gpt4 book ai didi

javascript - 无法与 Cordova 应用程序中的任何内容进行交互

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:12:11 25 4
gpt4 key购买 nike

我无法从我的第一个 Cordova 项目中获得任何类型的交互性。我有 HTML、Javascript 和 CSS 方面的经验,所以我认为 Cordova 是混合应用程序开发的完美介绍,但我似乎连一个基本的 HTML 按钮都无法在该应用程序上运行。

我正在使用安装了 Android Studio 和 Cordova 的 Windows 10。我想我已经正确设置了项目文件结构。我一直在关注 Cordova 的文档,并在所有设备类型上安装了地理定位插件。为了进行测试,我同时使用了 Android Studio 中的虚拟安卓设备和安卓手机 (OnePlus X),它已正确连接(只要我在控制台中键入“cordova run android”,应用程序就会在手机上打开)。

我开始尝试获取我的当前位置,然后显示坐标作为警报。这不起作用,所以为了尝试更简单的方法,我添加了一个按钮,单击该按钮时应显示警报弹出窗口,但两者均无效。这是我当前的代码:

www/index.html

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>Hello World</title>
</head>
<body>
<div class="app">
<h1 id="headertext">My first Cordova App!</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received" id="geolocation">Device is ready!</p>
</div>
<br>
<div>
<button type="button" onclick="basicAlertTest();">Click Me!</button>
</div>
</div>

<script type="text/javascript" charset="utf-8">
// onSuccess Callback
// current GPS coordinates
var onSuccess = function(position) {
alert('Latitude: ' + position.coords.latitude + '\n' +
'Longitude: ' + position.coords.longitude + '\n' +
'Altitude: ' + position.coords.altitude + '\n' +
'Accuracy: ' + position.coords.accuracy + '\n' +
'Altitude Accuracy: ' + position.coords.altitudeAccuracy + '\n' +
'Heading: ' + position.coords.heading + '\n' +
'Speed: ' + position.coords.speed + '\n' +
'Timestamp: ' + position.timestamp + '\n');
};

// onError Callback receives a PositionError object
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}

// Listening for the device to be ready
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
console.log("navigator.geolocation should be able to run successfully now...");
navigator.geolocation.getCurrentPosition(onSuccess, onError);
}

// Checking to see if a basic alert will appear on click of "Click me!" button
function basicAlertTest(){
alert("This is the alert test, button works!");
}
</script>

<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>

</body>
</html>

我缺少什么基本的东西吗?我以为我可以像往常一样用 HTML/Javascript/CSS 编写代码,但需要学习一些代码行来集成使用 native 设备功能(如地理定位或相机)的插件。我已经确保安装了地理定位插件(使用 cordova plugin add cordova-plugin-geolocation ),但没有出现警报。我是否需要单独的插件来显示警报/与屏幕交互?

此外,我注意到每当我对其进行虚拟测试时,如果我查看“扩展控件”中的位置,它给出的坐标是:

Longitude: -122.0840
Latitude: 37.4220
Altitude: 0.0

那是加利福尼亚州山景城,离我大约 8000 英里 ¯_(ツ)_/¯

截图如下:

enter image description here

我正在本地测试这个,这有什么不同吗?我真的很感激任何帮助或建议,我可能遗漏了一些非常明显的东西。提前致谢!

更新 1从“cordova plugin ls”返回的已安装插件列表:

cordova-plugin-compat 1.0.0 "Compat"
cordova-plugin-dialogs 1.3.0 "Notification"
cordova-plugin-geolocation 2.4.0 "Geolocation"
cordova-plugin-whitelist 1.3.0 "Whitelist"

更新 2

onSuccess功能应该在设备准备就绪后运行。当它运行时,它应该显示包含位置详细信息的警报,但由于我收到的是“设备准备就绪”消息,但没有出现任何警报,我决定添加一个按钮来手动调用该函数。

我现在确定onSuccess设备准备就绪后无法正常运行,因为每当我单击按钮使其手动运行时,控制台中都会显示以下错误:

Uncaught TypeError: Cannot read property 'coords' of undefined

我很困惑,因为我使用的是与此处所示相同的代码:https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-geolocation/index.html

另外,我注意到我正在处理的索引模板包含 <script type="text/javascript" src="cordova.js"></script> ,但是当我查看包含我的索引文件的文件夹时,没有 cordova.js 文件,它不在那里,我似乎无法在 cordova 下载中找到它,这是正常的还是需要下载分开?

最近的尝试:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src * gap://ready file:; style-src 'self' 'unsafe-inline' *; script-src 'self' 'unsafe-inline' 'unsafe-eval' *; img-src * data: 'unsafe-inline'">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>Hello World</title>

<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<div class="app">
<h1 id="headertext">My first Cordova App!</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received" id="geolocation">Device is ready!</p>
</div>
<br>
<div>
<button type="button" onclick="basicAlertTest();">Click Me!</button>
<button type="button" onclick="onSuccess();">Run onSuccess function</button>
</div>
</div>

<script type="text/javascript" charset="utf-8">

// onSuccess Callback
// current GPS coordinates
var onSuccess = function(position) {
alert('Latitude: ' + position.coords.latitude + '\n' +
'Longitude: ' + position.coords.longitude + '\n' +
'Altitude: ' + position.coords.altitude + '\n' +
'Accuracy: ' + position.coords.accuracy + '\n' +
'Altitude Accuracy: ' + position.coords.altitudeAccuracy + '\n' +
'Heading: ' + position.coords.heading + '\n' +
'Speed: ' + position.coords.speed + '\n' +
'Timestamp: ' + position.timestamp + '\n');
};



// onError Callback receives a PositionError object
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}

// Listening for the device to be ready
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
console.log("navigator.geolocation should be able to run successfully now...");
navigator.geolocation.getCurrentPosition(onSuccess, onError);
}

// Checking to see if a basic alert will appear on click of "Click me!" button
function basicAlertTest(){
console.log("This is the alert test, button works!");
alert("This is the alert test, button works!");
}
</script>

</body>
</html>

最佳答案

删除 index.html 文件顶部的这一行

<meta http-equiv="Content-Security-Policy" content="default-src * gap: ws: https://ssl.gstatic.com;style-src * 'unsafe-inline' 'self' data: blob:;script-src * 'unsafe-inline' 'unsafe-eval' data: blob:;img-src * data: 'unsafe-inline' 'self' content:;fmedia-src mediastream;">

关于javascript - 无法与 Cordova 应用程序中的任何内容进行交互,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40107939/

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