Knockout找不到我的模板

时间:2013-07-18 14:36:15

标签: knockout.js

Knockout找不到我的模板:

Uncaught Error: Cannot find template with ID response 

我错了什么?我已正确定义了模板。

查看

<script id="map" type="text/html">
    <div style="position:absolute;top:200px;background-color: green;width:100px;height:200px;" data-bind="text: streetName"></div>    
</script>

<script id="reponse" type="text/html">
    <div style="position:absolute;top:200px;background-color: red;width:100px;height:200px;" data-bind="text: alarmNumber">3333</div>
</script>

<div data-bind="template: { name: currentChildTemplate(), data: selectedListItem() }"></div>

视图模型

return function()
{
  var currentChildTemplate = ko.observable(response);
  var selectedListItem = ko.observable();

   return {
            currentChildTemplate: currentChildTemplate          
        };
}

1 个答案:

答案 0 :(得分:2)

你有类型o:

在html

中的错误响应中的响应