如何在uniapp中跳到外部連結
在uniapp中跳到外部連結需要使用下列步驟:
1. 開啟外部存取權限
在manifest.json檔案中,新增"external"屬性。
<code class="json">{ "package": "com.example.myapp", "name": "My App", "version": "1.0.0", "external": true }</code>
2. 使用uni.navigateTo 外部位址
在頁面中,使用uni.navigateTo方法指定外部位址。
<code class="javascript">uni.navigateTo({ url: 'https://www.example.com' });</code>
3. 使用uni.openWebview 開啟外部位址
在頁面中,也可以使用uni.openWebview方法開啟一個外部位址。
<code class="javascript">uni.openWebview({ url: 'https://www.example.com' });</code>
注意:
以上是uniapp怎麼跳轉外部鏈接的詳細內容。更多資訊請關注PHP中文網其他相關文章!