如何在 Appcelerator Titanium 中使用 CoffieeScript 而不是 JavaScript

发布于 2024-11-29 01:37:16 字数 84 浏览 0 评论 0原文

我想用 CoffieeScript 编写代码,然后将其转换为 JavaScript。我该如何在 Appcelerator Titanium 中做到这一点。

I want to write my code in CoffieeScript, and then convert it into JavaScript. How do I do that in Appcelerator Titanium.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

空心↖ 2024-12-06 01:37:16

您必须在项目的 Resources 目录中创建 .coffee 文件,运行 coffee -w -c *.coffee 并使用 Ti 将已编译的 .js 文件导入 app.js 文件中。包括

Ti.include('main.js');

更广泛的指南:
http://rigelgroupllc.com/wp/blog/building -iphone-apps-with-titanium-and-coffeescript

适用于 Titanium 移动设备的有用插件:
http://suchfuncoding.com/174/titanium_coffee_script/

You must create your .coffee files in the Resources dir of your project, run coffee -w -c *.coffee and import the compiled .js files in the app.js file using Ti.include:

Ti.include('main.js');

A more extensive guide:
http://rigelgroupllc.com/wp/blog/building-iphone-apps-with-titanium-and-coffeescript

An useful plugin for Titanium mobile:
http://suchfuncoding.com/174/titanium_coffee_script/

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