敲除复合绑定路径

时间:2012-09-14 22:15:20

标签: binding path knockout.js composite

您好我正在尝试绑定到淘汰赛中对象中的项目:

以下行不起作用

<span data-bind="text:selectedItem.details"></span>

我尝试在selecteItem之后将其更改为括号:

<span data-bind="text:selectedItem().details"></span>

,它仍然无效。

使用:,但有效:

<div data-bind="with:selectedItem">
    <span data-bind="text:details" />
</div>

我做错了什么?如何在Knockout中使用复合绑定路径。 感谢

0 个答案:

没有答案