在JavaScript中替换Parse.Collections的最佳方法是什么?

前端之家收集整理的这篇文章主要介绍了在JavaScript中替换Parse.Collections的最佳方法是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Parse.com从JS SKD中删除了Backbone风格的Parse.Collection(从这里 https://parse.com/docs/downloads):

SDK no longer contains Backbone-specific behavior. Moving forward,the core SDK will not be tied to any single framework,but we will work with the community to produce up-to-date bindings like Parse+React. The major changes are the removal of Parse.Collection,and allowing Parse.Objects to act as event channels.

我有很多使用parse.collection的代码,无论是在web应用程序还是node.js应用程序中.我有什么选择来将这些集合替换为类似的东西?或切换到另一种最佳做法?

例如,在我的Web应用程序的情况下,我应该将解析sdk包装在主干中以继续使用此功能吗?

谢谢你的想法

解决方法

您可以使用以下方式覆盖Backbone解析函数
parse: function (response) {
    return response.results;
},

猜你在找的JavaScript相关文章