CoffieeScriptでコードを記述し、それをJavaScriptに変換したいと思います。AppceleratorTitaniumでそれを行うにはどうすればよいですか。
1 に答える
3
プロジェクトの Resources ディレクトリに .coffee ファイルを作成し、次coffee -w -c *.coffee
を使用して app.js ファイルでコンパイルされた .js ファイルを実行およびインポートする必要がありTi.include
ます。
Ti.include('main.js');
より広範なガイド: http://rigelgroupllc.com/wp/blog/building-iphone-apps-with-titanium-and-coffeescript
Titanium モバイル用の便利なプラグイン: http://suchfuncoding.com/174/titanium_coffee_script/
于 2011-08-11T15:37:56.983 に答える