knockoutjs 嵌套模板值错误

发布于 2024-12-27 01:17:31 字数 301 浏览 2 评论 0原文

我对以下代码有疑问,它让我很头疼。

fiddle 首次运行时抛出以下异常,但在调用 Jquery UI 模式时它可以工作。

未捕获的错误:无法解析绑定。 消息:ReferenceError:url 未定义; Bindings value: value: url, valueUpdate: 'afterkeydown'

PS 点击文件夹名称 'Folder1' 查看链接,然后单击编辑链接查看链接模态编辑

I am having an issue with the following code and it is wrecking my head.

The fiddle throws the following exception when first run, yet it works when the Jquery UI modal is called.

Uncaught Error: Unable to parse bindings.
Message: ReferenceError: url is not defined;
Bindings value: value: url, valueUpdate: 'afterkeydown'

P.S Click on the folder name 'Folder1' to see the links, then click edit link to see the link modal edit

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

街角卖回忆 2025-01-03 01:17:31

本机模板不能像 jQuery 模板那样很好地防止 null。为了防止 null,您可以指定模板绑定,例如:

<div id="details" data-bind="template: { name: 'editTmpl', if: selectedLink, data: selectedLink }, openDialog: selectedLink"> 
</div>

The native templates don't protect as well against null as jQuery Templates did. To protect against null, you can specify your template binding like:

<div id="details" data-bind="template: { name: 'editTmpl', if: selectedLink, data: selectedLink }, openDialog: selectedLink"> 
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文