我是唯一一个遇到此问题的人吗?我现在还没有得到确切的代码,但它类似于以下内容......(这是我用来启动和运行TideSDK的最简单的例子)
我的index.html ...
<script>
Titanium.include("testLibrary.php")
</script>
<script>
var testresult = new testMethod();
document.write(testresult);
</script>
我在资源目录中的testLibrary.php文件就像......一样简单。
<?php
function testMethod()
{
$fixedResult = "The most basic php variable for display in the DOM";
return $fixedResult;
}
我已经打开了包装等的PHP。当我在索引文件中包含php代码时,一切正常,所以我知道php正在工作,我只是无法获得包括工作?
答案 0 :(得分:2)
将我的评论移到答案中,因为不确定WikingFrog是否通过电子邮件获得通知:评论
为什么要在方法上调用new? var testresult = testMethod();
应该有效
另外,.php文件中不需要<?php
开放标记,这可能是您问题的根源。