您好我正在使用Appcelerator构建iOS应用
我有一个文件app.js
和一个文件webService.js
文件webService.js包含function x
现在,从我的app.js
文件中,我想呼叫function x
中存在的webService.js
文件。
我搜索了很多,但我发现使用html..i我没有使用任何html,它只是纯粹的javascript。
答案 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)
Ti.include
已被弃用,但它在我的环境中不起作用。如果你正在使用咖啡,试试coffee-concat,虽然它有些难看。