我正在尝试运行示例doh测试用例。 我正在测试一个模板化的小部件,它来自dijit / layout / ContentPane。
没有抛出错误......组件根本不呈现。 正在加载模板文件,因为我可以在firebug的net选项卡中看到它,但它就像它没有“附加”到模板化的小部件。 当我删除ContentPane mixin时,事情按预期工作。
我们的项目使用ContentPane在很多地方混合到我们的模板化小部件,因此我们可以将小部件视为布局小部件。只有在尝试使用doh加载时才会出现此问题。
我们正在尝试加载的小部件:
define([
'dijit/layout/ContentPane',
'dijit/_WidgetsInTemplateMixin',
'dijit/_TemplatedMixin',
'dijit/_WidgetBase',
'dojo/_base/declare',
'dojo/text!./about.html'
], function(ContentPane, WidgetsInTemplateMixin, TemplatedMixin, WidgetBase, declare, about) {
return declare([ContentPane, TemplatedMixin, WidgetsInTemplateMixin], {
templateString: about,
constructor: function() {
this.inherited(arguments);
},
startup: function() {
this.inherited(arguments);
}
});
});
模板:
<div>
<div>
<h1>foo</h1>
</div>
</div>
doh test runner页面:
<body class="claro">
<div style="height: 100%">
<div id="mainContainer"
style="height: 100%; width: 100%"
data-dojo-type="dijit/layout/BorderContainer">
<div data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region: 'center'">
<div data-dojo-type="testPackage/widgets/About/About"
style="width: 100px; height: 100px; background-color: green">
</div>
</div>
</div>
</div>
<script type="text/javascript">
require([
'dojo/ready',
'dojo/parser',
'dojo/dom-style',
'dojo/query',
'dojo',
'doh'
], function(ready, parser, domStyle, query, dojo, doh){
ready(function() {
parser.parse();
doh.register("t", [
function setup(t){
var d = new doh.Deferred();
d.callback(true);
return d;
}
]
);
doh.run();
});
});
</script>
</body>
模板html文件中的“foo”文本未显示
答案 0 :(得分:2)
“所以我们可以将我们的小部件视为布局小部件”......
你应该混合dijit / _LayoutWidget而不是dijit / layout / ContentPane,如果你想得到的只是布局功能。
因此,您的小部件将变为:
define([
'dijit/layout/_LayoutWidget',
'dijit/_WidgetsInTemplateMixin',
'dijit/_TemplatedMixin',
'dojo/_base/declare',
'dojo/text!./about.html',
'dojo/domReady!'
], function(ContentPane, _WidgetsInTemplateMixin, _TemplatedMixin, declare, about) {
return declare([_LayoutWidget, _TemplatedMixin, _WidgetsInTemplateMixin], {
templateString: about,
// ...
});
});