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.
是否可以在不与服务器进行任何交互的情况下使用集合?我知道骨干网有一个本地存储选项,但我不想使用它。
是的,绝对!Backbone 没有很多规则,要求您与服务器交互也不是其中之一。
集合的fetch()andcreate()方法需要集合定义中的 url,但如果你不使用这些方法,你应该没问题。对于模型,避免fetch()、save()和destroy()。
fetch()
create()
save()
destroy()
如果您出于某种原因确实需要这些方法,您只需设置collection.url = '/'它就不会做任何事情。
collection.url = '/'
是的,如果你愿意,你可以完全在内存中使用它。