0

我正在尝试运行一个示例 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 测试运行器页面:

<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”文本未显示

4

1 回答 1

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,

        // ...
    });
});
于 2013-07-12T14:10:04.013 回答