0
道場說,「道場AMD格式,使代碼更容易編寫和調試」 (https://dojotoolkit.org/documentation/tutorials/1.10/modules_advanced/)「dojo AMD格式,使代碼更容易編寫和調試」,如何證明它?
沒有任何可以證明我們的示例代碼,以證明這種說法? 坦克:)
道場說,「道場AMD格式,使代碼更容易編寫和調試」 (https://dojotoolkit.org/documentation/tutorials/1.10/modules_advanced/)「dojo AMD格式,使代碼更容易編寫和調試」,如何證明它?
沒有任何可以證明我們的示例代碼,以證明這種說法? 坦克:)
AMD可以讓你的代碼模塊,按需加載的劃分/組織,這有一定的優勢:
有關AMD and module的更多信息:
的導航欄單模的例子:
// in "my/widget/NavBar.js"
define([
"dojo/_base/declare",
"dijit/_WidgetBase",
"dijit/_TemplatedMixin",
"dojo/text!./templates/NavBar.html"
], function(declare, _WidgetBase, _TemplatedMixin, template){
return declare([_WidgetBase, _TemplatedMixin], {
// template contains the content of the file "my/widget/templates/NavBar.html"
templateString: template
});
});
謝謝您的回答Gibbonk .... :)我們可以得到答案的示例代碼?非常感謝 – riobmunas
@riobmunas是的課程,我編輯了我的答案。 – GibboK
@riobmunas如果您發現我的答案有用,請不要忘記使用其左側的圖標來投票/接受它。更多信息https://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work感謝和快樂的編碼! ;) – GibboK