如何在变化之前获取价值?在knockout.js中
我正在使用映射实用程序来加载一些大型 JSON 数据。我知道如何通过“更新”回调检测更改。
但如何比较旧值和新值呢?在“更新”回调中,我只能访问新值。
当然,当我更新 JSON 时,我再次使用映射实用程序。
我想知道价值是增加还是减少。如何做到这一点?
I'm using mapping utils to load some mega JSON data. I know how to detect changes with an 'update' callback.
But how do I compare the old value with new value? In the 'update' callback I get access only to new value.
Of course - when I put update to JSON - I use mapping utils again.
I'd like to know whether the value increases or decreases. How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ko.mapping 插件的更新回调采用一个选项参数,该参数是一个包含
父对象仍保留旧值。
An update callback for the ko.mapping plugin takes one options argument, which is an object containing
The parent object still holds the old value.