如何从另一个javascript文件中调用javascript文件的函数而不使用钛中的HTML

时间:2012-01-02 10:25:33

标签: javascript titanium appcelerator titanium-mobile

您好我正在使用Appcelerator构建iOS应用

我有一个文件app.js和一个文件webService.js

文件webService.js包含function x

现在,从我的app.js文件中,我想呼叫function x中存在的webService.js 文件。

我搜索了很多,但我发现使用html..i我没有使用任何html,它只是纯粹的javascript。

4 个答案:

答案 0 :(得分:6)

您是否尝试过使用

Ti.include('path/file.js');

答案 1 :(得分:3)

使用以下方法在app.js中包含该文件:

Ti.include('path/webService.js'); 

并调用该函数。

答案 2 :(得分:0)

你可以使用include,但我建议你看看commonjs。 Commonjs是构建appcelerator应用程序的未来。

您应该检查this

答案 3 :(得分:0)

自Titanium 3.3以来,

Ti.include已被弃用,但它在我的环境中不起作用。如果你正在使用咖啡,试试coffee-concat,虽然它有些难看。