我对Dojo的加载器有一个真正的问题。我觉得在这里粘贴代码真的很难,因为这是一个涉及整个应用程序的问题。
我创建了一个名为LoginForm
的小部件,其开头如下:
define([
"dojo/_base/declare",
"app/globals",
"app/stores",
"dijit/form/Form",
"dijit/_WidgetBase",
"dijit/_TemplatedMixin",
"dijit/_WidgetsInTemplateMixin",
"dijit/layout/TabContainer",
"dijit/layout/StackContainer",
"dijit/layout/ContentPane",
"dijit/layout/BorderContainer",
"dijit/form/Button",
"app/widgets/ValidationPassword",
"app/widgets/ValidationEmail",
"app/widgets/AlertBar",
"app/widgets/StackFading",
"app/widgets/TabFading",
"dojo/_base/lang",
"app/widgets/BusyButton",
"dojo/_base/json",
"dojo/_base/fx",
"dojo/text!app/widgets/templates/LoginForm.html",
], function(
declare,
...
, json
, baseFx
, templateString
){
// Create the "login" pane, based on a normal ContentPane
return declare('app.LoginForm', [_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin ], {
widgetsInTemplate: true,
templateString: templateString,
这是一个使用模板的简单小部件,在模板中还有一些子小部件,如此处所述。
现在......我正在尝试在Ajax回调中创建一个Loginform类型的对象。 然而,装载机让我失望。
应用程序的MAIN屏幕显示如下:
define([
"dojo/_base/declare",
"dijit/_WidgetBase",
"dijit/_TemplatedMixin",
"dijit/_WidgetsInTemplateMixin",
"app/widgets/Dashboard",
"app/globals",
"dijit/layout/BorderContainer",
"dijit/layout/StackContainer",
"dijit/layout/TabContainer",
"dijit/layout/ContentPane",
"app/widgets/SearchPage",
], function(
declare
, _WidgetBase
...
, SearchPage
){
// Create the "login" pane, based on a normal ContentPane
return declare('AppMainScreen', [_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin ], {
...
第三个小部件,仪表板,只有一个按钮:
define([
"dojo/_base/declare",
"app/globals",
"app/defaultSubmit",
"app/stores",
"dijit/form/Form",
"dijit/_WidgetBase",
"dijit/_TemplatedMixin",
"dijit/_WidgetsInTemplateMixin",
"app/widgets/AlertBar",
"app/widgets/BusyButton",
"dojo/_base/json",
"dojo/domReady!",
], function(
declare
, g
, ds
, stores
, Form
, _WidgetBase
, _TemplatedMixin
, _WidgetsInTemplateMixin
, AlertBar
, BusyButton
, json
){
// Create the "login" pane, based on a normal ContentPane
return declare('app.Dashboard', [_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin ], {
widgetsInTemplate: true,
templateString: '' +
'<div>' +
' <div data-dojo-type="app.AlertBar" data-dojo-attach-point="alertBar"></div>' +
' <form data-dojo-type="dijit.form.Form" data-dojo-attach-point="form" method="POST"> ' +
' <input type="submit" data-dojo-attach-point="button" data-dojo-type="app.BusyButton" label="Create!" />' +
' </form>' +
'</div>',
然后将该表单的onSubmit链接到"app/defaultSubmit",
中的一个函数,其中包含:
define([
'app/globals',
'dijit/registry',
'dojo/query',
'dojo/aspect',
'dojo/_base/lang',
'dojo/_base/json',
'dijit/Tooltip',
'dijit/Dialog',
'app/widgets/LoginForm',
],function(
g
, registry
, query
, aspect
, lang
, json
, Tooltip
, Dialog
, LoginForm
){
问题是LoginForm不起作用,因为LoginForm的构造函数不起作用:它说它无法实例化其中一个依赖类。
现在,如果我将此添加到应用程序的mainScreen的postCreate:
var loginForm = new LoginForm({});
然后,在回调中,LoginForm()神奇地工作(!)。
我知道我没有发布所有代码,但是在AMD如何处理依赖关系方面,我是否需要知道任何魔术?如何确保在回调中解析模块??
再见,
Merc的。
答案 0 :(得分:2)
这些评论不适合评论部分。
我无法看到代码中的缺陷,但有些内容需要注意。
有关AMD加载程序的说明
不要对加载顺序做出假设。
require(["foo", "bar", function (foo, bar) {
// use foo and bar
});
可能首先加载并调用foo
或bar
,因为加载是异步的。唯一可以保证的是,在调用回调函数时它们都会被加载。 "foo"
解析为define
函数返回的内容;如果这是undefined
,则确保函数返回一个值。
避免循环依赖。
//bar.js
define(["foo"], function (foo) {
return {};
});
//foo.js
define(["bar"], function (bar) {
return {};
});
行为已定义(请参阅documentation on modules),但可能难以管理。检查您是否通过传递依赖项(A
- &gt; B
- &gt; C
- &gt; A
来介绍这些依赖项。)
在尝试parse模板之前加载传递模板依赖项。
define(["dojo/_base/declare", "dijit/_WidgetBase", "dojo/parser",
"dijit/form/Button" //need to load this even though it is
//not referenced in the function
],
function(declare, _WidgetBase, parser) {
// pretend this is some custom template format (e.g. DTL)
var template = "<div data-dojo-type='dijit.form.Button'></div>";
return declare("foo.Foo", [_WidgetBase, _TemplatedMixin], {
postCreate: function() {
this.domNode.innerHTML = template;
parser.parse(this.domNode);
}
});
});
_WidgetsInTemplateMixin
与standard template widgets一起使用。
另外,请务必阅读1.7 release notes了解问题和注意事项。
注意:此代码未经测试。
顺便说一下,数组上的尾随逗号会在IE7中导致错误。