gpt4 book ai didi

android - NativeScript-vue: 无法在 WebView 中显示本地 HTML

转载 作者:行者123 更新时间:2023-12-04 23:55:03 28 4
gpt4 key购买 nike

我正在使用 NativeScript-vue。

我想使用 WebView 在本地资源中显示 HTML 文件。

src/components/App.vue:

<template>
<Frame>
<Page>
<GridLayout columns="*" rows="*">
<WebView row="0" col="0" src="~/assets/index.html" />
</GridLayout>
</Page>
</Frame>
</template>

src/main.ts:

import Vue from 'nativescript-vue';
import App from './components/App.vue';

new Vue({
render: h => h(App)
}).$start();

src/assets/index.html:

<html>
<body>
<div>test</div>
</body>
</html>

App_Resources/Android/src/main/AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="__PACKAGE__"
android:versionCode="10000"
android:versionName="1.0">

<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"/>

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>

<application
android:name="com.tns.NativeScriptApplication"
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true">

<activity
android:name="com.tns.NativeScriptActivity"
android:label="@string/title_activity_kimera"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
android:theme="@style/LaunchScreenTheme">

<meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" />

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.tns.ErrorReportActivity"/>
</application>
</manifest>

现在,当我在 Android 模拟器上运行此应用程序时,我收到错误“ERR_ACCESS_DENIED”。

enter image description here

这种情况与实际设备相同,而不是模拟器。

有什么可能的原因吗?

环境:

  • npm:
    • @nativescript/核心:7.0.3
    • nativescript-socketio: 3.3.1
    • nativescript-vue: 2.8.1
  • 模拟器:API 30、Android 11.0、x86

奇怪的是,它在 Android 10.0(API 29、x86)模拟器上运行良好。

最佳答案

原来在Android 11.0以后,默认是不允许文件访问的!

Android Developers Reference: WebSettings

The default value is true for apps targeting Build.VERSION_CODES.Q and below, and false when targeting Build.VERSION_CODES.R and above.

解析代码

src/components/App.vue:

<template>
<Frame>
<Page>
<GridLayout columns="*" rows="*">
<WebView row="0" col="0" @loaded="webViewLoaded" />
</GridLayout>
</Page>
</Frame>
</template>

<script lang="ts">
export default {
methods: {
webViewLoaded(args) {
if (args.object.android) {
args.object.android.getSettings().setAllowFileAccess(true); // IMPORTANT!!
args.object.src = "~/assets/map/index.html"; // Load local HTML.
}
},
},
};
</script>

关于android - NativeScript-vue: 无法在 WebView 中显示本地 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64739230/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com