如何从另一个javascript文件调用一个javascript文件的函数而不使用titanium中的HTML
您好,我正在使用 Appcelerator 构建一个 iOS 应用程序,
我有一个文件 app.js
和一个文件 webService.js
文件 webService.js 包含一个 function x< /code>
现在,我想从我的 app.js
文件中调用 webService.js
中存在的 function x
文件。
我搜索了很多,但我只发现使用html..我没有使用其中的任何html,它只是纯javascript。
Hi I am building a iOS app using Appcelerator,
I have a file app.js
and a file webService.js
the file webService.js contains a function x
now from my app.js
file i want to call function x
that is present in the webService.js
file.
I searched a lot but i only found that using html..i am not using any html in it, it is just pure javascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你有没有尝试过使用
Have you tried using
使用 : 将文件包含在 app.js 中
并调用该函数。
Include the file in app.js using :
and call the function.
好吧,你可以使用 include,但我建议你看看 commonjs。
Commonjs 是构建 appcelerator 应用程序的未来。
您应该检查此
Well you can use include, but i advise you to take a look at commonjs.
Commonjs is the future on architecturing appcelerator's applications.
You should check this
Ti.include
自 Titanium 3.3 起已被弃用,并且它在我的环境中不起作用。如果您使用咖啡,请尝试 coffee-concat ,尽管它有点难看。Ti.include
is deprecated since Titanium 3.3, and it doesn't work in my environment. If you are using coffee, try coffee-concat , though it's somehow ugly.