Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果要绑定attr: { href: url },它是否总是根据 rfc2396 转义 url?
attr: { href: url }
我最近遇到了&在 json 响应中&通过敲除转换为的问题,我猜敲除无法知道它是双重编码的(html 然后是 json),因此将任何转换&为实体。
&
&
&
我们是否应该始终将原始 url 提供给attr绑定,而不是用于html绑定?这里的经验法则是什么?
attr
html
尝试这个:
JSON.stringify('"some text"')
KnockoutJS postJSON 方法为什么会转义我的字符串?