2013年6月19日 星期三

Requirejs使用變數動態載入Module

要使用變數儲存動態載入路徑
一定要使用callback處理

switch layout
    when 'case1'
        _path= '_v/View1'                    
    when 'case2'                            
        _path= '_v/View2'                                
    else
        _path= '_v/View3'
require [_path],(View)=>                                
    view= new View
        el:'#container'                    
    @dispatchEvent 'ready'

沒有留言: