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.
在我的应用程序中,我不使用 ember-data,那么如何保存具有更新属性的对象?我.set()用来改变对象的属性,但是怎么做呢?
.set()
在任何可能的意义上,这都不是一个完整的问题。假设您正在尝试将模型保存到持久层,则需要将 XHR 发送到您的服务器,并序列化模型的字段。然后,您的服务器将需要返回您在 XHR 回调中解析的响应,您可以使用该回调在客户端更新您的模型。
如果您想要更详细的答案,您必须提出更详细的问题。