我尝试了一周所有类型的解决方案,但没有任何工作,我不知道如何我可以调试我的发布应用程序,在调试模式应用程序中的每件事都运行良好!这是我的HTML代码
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-eval' data: blob: filesystem: ws: gap://ready file: cdvfile: https://ssl.gstatic.com *; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'; img-src * data: 'unsafe-inline'; connect-src * 'unsafe-inline'; frame-src *; worker-src *; child-src *;">
$.post("https://xxxxx/api/").done(function (data) {
console.log(data);
})
config.xml:
<access origin="*" />
<allow-navigation href="*" />
<allow-intent href="*" />
php代码:
header('Access-Control-Allow-Origin: *');
header('Content-Type: application/json');
$sendData[status] = 'ERROR';
$sendData[message] = 'no action command';
echo json_encode($sendData);
exit();
我错过了什么?
答案 0 :(得分:0)
您是否尝试在config.xml
文件
cordova plugin add cordova-plugin-whitelist
cordova prepare
您可以在此处阅读:https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-whitelist/
答案 1 :(得分:0)
使用Framework7时,无法使用$访问DOM7因冲突问题。而不是&#39; $&#39;使用&#39; $$&#39;。在应用程序初始化时,DOM7被分配给$$。你可以检查一下。有关详细信息,请查看以下链接http://framework7.io/docs/dom7.html