css 绑定的问题,它在应用程序中很深,但我会尝试提取错误来摆弄,除非.....(手指交叉)你知道或可以从下面猜到发生了什么,看起来你可以在下面看到我已经得到它呈现我要添加的类字符串的字符索引,显然不是我们想要的:
模板:
<section data-bind="css: type" class="toolbox-tool">
<span data-bind="text: type"></span>
<label data-bind="attr: {for: id}"/>
<img data-bind="attr: {src: imageSource}"/>
</section>
渲染的标记
<section data-bind="css: type" class="toolbox-tool 0 1 2 3 4 5 6 7 8 9 10 ui-draggable">
<span data-bind="text: type">text-ticker</span>
<label data-bind="attr: {for: id}" for="2"></label>
<img data-bind="attr: {src: imageSource}" src="#">
</section>