だから私はこの単純な必要があります:
require(['app/'+url,'dojo/text!content/'+url], function(module,template){
if(module.init){
module.init({
container: panel,
containerId: 'contentTabs_' + idOp,
template: template
});
}
});
ただし、テンプレートが存在しない場合があります (存在する場合もあります)。したがって、何が起こっても、require コールバックを実行したいと思います。
これを行うAMDの方法は何ですか?
みんなありがとう。