带有 KnockoutJs ViewModel 的 Mvc3 模型
我试图找出如何将 Mvc 3 模型(带有预先填充的集合)传递给 Knockout ViewModel?
有什么想法吗?
预先感谢您的帮助。
朱尔斯
I'm trying to find out how i can pass an Mvc 3 model (with pre-populated collections) to a Knockout ViewModel?
Any ideas?
Thanks in advance for your help.
Jules
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将所有 mvc 模型值写入相关的 js 对象来从 Razor 视图填充它。但我宁愿在页面加载后通过 Ajax 调用加载它。看看这里的一个想法:
在 KnockoutJS 中延迟加载可观察对象。
You can just populate it from your Razor view by writing all the mvc model values into related js objects. But I would rather load it via Ajax call after the page is loaded. Have a look at an idea here:
Lazy loading an observable in KnockoutJS.