无法处理绑定模板
Unable to process binding template
我有下一期:
error
并有下一个代码:
<!-- ko foreach: {data: $data.offers, as: 'offer'}-->
<span data-bind="text: offer.AccommodationType"></span>
<div data-bind="template: { name: 'offer-template', data: offer }"> </div>
<!-- /ko-->
我不明白为什么 <span data-bind="text: offer.AccommodationType"></span>
有效,但 <div data-bind="template: { name: 'offer-template', data: offer }"> </div>
无效。
请帮忙!
正如您在截图中看到的,属性绑定不是引号。
所以它应该是这样的:<div class="searchresults-new-item"
data-bind="class: CategoryCssClasses, attr:{'data-flight': AccommodationType, 'data-total-price': Offer.TotalPrice, 'data-adult-price': Offer.AdultPrice, 'data-hotel-inventory': Hotel.InventoryStatus}"></div>
data-flight 和其他在引号中。
我有下一期: error
并有下一个代码:
<!-- ko foreach: {data: $data.offers, as: 'offer'}-->
<span data-bind="text: offer.AccommodationType"></span>
<div data-bind="template: { name: 'offer-template', data: offer }"> </div>
<!-- /ko-->
我不明白为什么 <span data-bind="text: offer.AccommodationType"></span>
有效,但 <div data-bind="template: { name: 'offer-template', data: offer }"> </div>
无效。
请帮忙!
正如您在截图中看到的,属性绑定不是引号。
所以它应该是这样的:<div class="searchresults-new-item"
data-bind="class: CategoryCssClasses, attr:{'data-flight': AccommodationType, 'data-total-price': Offer.TotalPrice, 'data-adult-price': Offer.AdultPrice, 'data-hotel-inventory': Hotel.InventoryStatus}"></div>
data-flight 和其他在引号中。