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

发布于 2024-12-23 18:06:58 字数 341 浏览 1 评论 0原文

您好,我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

厌倦 2024-12-30 18:06:58

你有没有尝试过使用

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

Have you tried using

Ti.include('path/file.js');
滥情空心 2024-12-30 18:06:58

使用 : 将文件包含在 app.js 中

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

并调用该函数。

Include the file in app.js using :

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

and call the function.

瞄了个咪的 2024-12-30 18:06:58

好吧,你可以使用 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

魔法少女 2024-12-30 18:06:58

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文