当我试图从我的 Javascript 函数调用 .php 文件时,它只是说
"Access to http://192.168.0.104:89/someDir/filename.php is not allowed"
.
这个场景出现在我的黑莓模拟器上,因为该应用程序是使用 phonegap、HTML 和 Javascript 构建的。相同的脚本在我的 android 模拟器上运行良好。只是在黑莓上失败了。
谁能帮我看看错在哪里?
当我试图从我的 Javascript 函数调用 .php 文件时,它只是说
"Access to http://192.168.0.104:89/someDir/filename.php is not allowed"
.
这个场景出现在我的黑莓模拟器上,因为该应用程序是使用 phonegap、HTML 和 Javascript 构建的。相同的脚本在我的 android 模拟器上运行良好。只是在黑莓上失败了。
谁能帮我看看错在哪里?
不是 JS 专家,只是一个想法,你能从 PHP 调用你的 JS 吗?然后在该文件中包含您的 PHP 文件?
<?php include("php/file.php"); ?>
<script src="js/file.php"></script>
不确定这是否是您想要做的。
解决办法是编辑项目的config.xml文件——添加标签
<access subdomains="true" uri="http://*URI name here*"/>
。
只有这样,黑莓才允许访问不同域的权限。