0

我在模板中包含了一些 html,但是当我尝试激活模板并更改模板中的某些元素时,它返回为 null。我在模板上做了一个console.log,回来的只是模板标签的开始和结束标签,例如<template id="panel-template"></template>这是渲染的版本,你可以看到没有一个应该被封装的html不是当下。

这是我的模板

<template id="panel-template">
<div class="panel panel-default" draggable="true">
    <div class="panel-heading">
        <h3 class="panel-title">
            Panel title
            <span class="glyphicon glyphicon-pencil panel-icons"></span>
            <span class="glyphicon glyphicon-zoom-in panel-icons"></span>
            <span class="glyphicon glyphicon-trash panel-icons"></span>
        </h3>
    </div>
    <div class="panel-body">
    </div>
</div>

这是与模板相关的javascript的一部分,我当然已经将它包装在document.ready中

if ('content' in document.createElement('template')) {

                    //var widgetCount = document.getElementById('columns').getAttribute('data-count');
                    var widgetModel = @Html.Raw(Json.Encode(Model.widgets));

                    for (var i = 0; i < widgetModel.length; i++) {
                        var clone = loadwidgets(widgetModel[i]); //This function is in an external js file
                        var inputDestination = document.querySelector('#col2')
                        console.log(inputDestination);
                        inputDestination.appendChild(clone);
                    }
                }

这是 loadWidgets 函数。

function loadwidgets (jsonObject) {
var template = document.querySelector('#panel-template');
var panelTitle = template.querySelector('div.panel-title');
var widgetType = template.querySelector('div.panel-body');

console.log(template);

//We give the widget a name on top of panel, this will be user defined.
panelTitle.textContent = jsonObject.WidgetName;
widgetType.setAttribute('id', jsonObject.WidgetCode);

return document.importNode(template, true);

}

我收到一个错误,说 panelTitle 为空,但我认为这是因为在激活模板时,它似乎没有通过封装的 html 元素。我不确定如何进行。

4

2 回答 2

0

我在您的 Javascript 部分中看到您声明如果您创建一个元素。您需要启动代码。但我没有看到你在创建元素“模板”

于 2015-05-26T14:58:41.170 回答
0

您应该querySelector()在模板的content属性上使用:

var panelTitle = template.content.querySelector('div.panel-title');

如您提供的链接中所述。

于 2018-06-25T11:33:09.203 回答