gpt4 book ai didi

javascript - 如何在 ionic 中的 app.run() 中包含 HTTP 请求

转载 作者:行者123 更新时间:2023-11-29 00:16:43 26 4
gpt4 key购买 nike

我用 ionic V1 制作了 android 项目。我想让应用程序在使用 Cordova event 关闭应用程序之前发送一些功能。我尝试使用暂停将数据发送到服务器,但我一直坚持在 app.run() 中发送数据。这是我在 app.js

中的代码
.run(function ($ionicPlatform) { 
$ionicPlatform.ready(function () {
document.addEventListener("pause", onPause, false);
});
function onPause($http) {
$http.get('https://localhost:88/web.php?tN=off&f12=123456789')
.then(function(response){
console.log(response);
}, function(error){
//there was an error fetching from the server
});
}
});

还有这个来自调试器的错误

Uncaught TypeError: Cannot read property 'get' of undefined

我不知道这段代码哪里出了问题。我在 controller.js 中使用它可以正常工作,但在 app.js 中它不起作用。请帮我解决这个问题。谢谢

最佳答案

$http 缺少的是你的 run() 参数

关于javascript - 如何在 ionic 中的 app.run() 中包含 HTTP 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45161789/

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