当我在浏览器上单击查看源时,Html不会查看

时间:2016-08-11 07:32:08

标签: javascript html knockout.js typescript

我的网络应用程序存在问题。我在Web应用程序开发中使用了TypeScript,KnockoutJs和Web Api,但是当我点击浏览器的浏览源时,我只得到一些脚本代码,找不到任何html标签。我不明白它是如何表现的那样,

请帮助我,如何在视图源上呈现其html。

enter image description here

1 个答案:

答案 0 :(得分:1)

我认为Knockout.js就是问题所在。请查看以下链接: Knockout visible binding

检查data-bind标记,传递给它的值必须为true才能使内容可见。

<div data-bind="visible: myValues().length > 0">
    You will see this message only when 'myValues' has at least one member.
</div>