2012-02-12 94 views
5

我安裝的是ST SDK工具,當我做「煎茶」在命令行中我看到這一點:如何生成Sencha Touch 2.x應用程序的腳手架?

$ sencha 
Sencha Command v2.0.0 Developer Preview 
Copyright (c) 2011 Sencha Inc. 


usage: sencha COMMAND [ARGS] 


The available commands are: 
    build   build a JSB project 
    create bootstrapdata  generate boostrap data 
    create jsb   generate a minimal JSB project for an app 
    create manifest  generate classes manifest 
    package   package your Touch web app into a native bundle 
    slice theme   slice a custom theme's images for IE 


See 'sencha help COMMAND' for more information on a specific command. 

但是當我嘗試「創建bootstrapdata」這是你問我了各種選項。

$ sencha create bootstrapdata 
usage: sencha create bootstrapdata [OPTIONS...] 


COMMAND: Generate Bootstrap Data 


DESCRIPTION: 


    Generate boostrap data 
OPTIONS: 


--core[=]value, -c[=]value (required) 
    The list of all core package names, comma-separated, for example: 
    "foundation,core,dom" 


--ignore[=][value], -i[=][value] 
    The list of items to be ignored, comma-separated 


--jsb[=]value, -j[=]value (required) 
    The path to the framework's jsb3 file 


--output[=]value, -o[=]value (required) 
    The file path to write bootstrap data to 


--output-release[=][value], -r[=][value] 
    The file path to write bootstrap data-release to 


--platform[=]value, -p[=]value (required) 
    The path to platform source directory 


--src[=]value, -s[=]value (required) 
    The path to the framework's source directory 

我如何在命令行中使用一個命令,而無需文件路徑和其他「必要」的選項,以產生一個「基本的Hello World」 ST2.x應用程序?

謝謝。

編輯1:順便說一下,我想要做的是Tommy Maintz在他的ST1.x演示文稿中做了什麼,在ST 2010 Conference

回答

2

Sencha Touch 2此時不存在Sencha Touch 2。在ST2發佈後,Sencha計劃在未來某個時候發佈更新。

sencha create bootstrapdata用於將您的應用程序編譯爲一個JS文件。你可以找到更多關於這個here的信息。

我還建議您提問Sencha Touch Forums,這是非常活躍的問題。

+0

其實我問過那裏,但等我來到這裏,我沒有得到正確的響應 - HTTP://www.sencha .com/forum/showthread.php?180456-How-do-I-generate-a-scaffold-for-an-ST-2.x-app&p = 732835&posted = 1#post732835 – marcamillion 2012-02-13 19:18:30

+0

感嘆,對不起。 – rdougan 2012-02-13 22:34:48

+0

不用擔心。發生在我們身上。 – marcamillion 2012-02-21 19:32:43

0

如果你想這樣做,那麼去這裏http://sencha.com/x/6p並從演示文稿下載代碼。在那裏你會在lib文件夾中找到文件夾Command。雖然該文件夾中執行以下命令:

./sencha generate app 'MyApp' 

注意./

+1

這將爲Sencha Touch 1.x生成文件,而不是2.x. – rdougan 2012-02-13 17:48:00

+0

當然可以。我已經提出你的答案。我只是說明如何重複他看到的湯米米爾茨所做的步驟。 – ilija139 2012-02-13 20:47:59

相關問題