2012-09-13 51 views
0

我試圖設置一個環境與VS2010中的SenchaTouch一起使用,並且我正在使用Snippet Designer編寫一些Snippets。 我不知道是否有人能解釋我如何做一個字符串變量的一部分: 例如:Visual Studio Snippets與subString變量

Ext.define("NotesApp.controller.Notes", 

我希望能夠編輯註釋名稱和NotesApp名的用戶,但沒有改變「.controller」 )

回答

0

經過一番研究,它比我想象的要簡單(網頁摘要基本)和我是懶得在第一時間:

Ext.define("$appli$.controller.$control$", { 

    extend: "Ext.app.Controller", 
    config: { 
     refs: {    
      // firstView: "firstView", 
      // secondView: "secondView" 
     }, 

    // Remainder of the controller’s code 

});