使用 .save() 传递 url 参数来发布表单数据
The page i am posting accepts parameter like id,email
how do i send
/index?id=001&[email protected]
in backbone.js
model.save()?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将第二个参数中的任何 jQuery ajax 选项传递给 save()。例如:
如果您需要概括这一点或将其干燥,那么重写同步可能是一个更好的主意。
You can pass any jQuery ajax options in the second param to save(). For example:
If you need to generalize this or DRY it up, then rewriting sync is probably a better idea.
您可以将
sync
方法添加到模型定义中。You may add a
sync
method into your model definition.