2012-09-13 27 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 

});