php 处理来自backbone.js 的put 请求
当backbone.js将模型保存到服务器时,它会发送一个PUT请求。我如何用 php 处理这些?如何获取随 put 请求发送的内容并将其存储在数据库中?
When backbone.js saves a model to the server, it sends a PUT request. How do I handle these with php? How do I take the contents that are sent with the put request, and store them in a database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是另一个例子:
$values = json_decode(file_get_contents('php://input'), true);
Here is another example:
$values = json_decode(file_get_contents('php://input'), true);
请参阅 php 文档示例 http://php.net/manual/en/features 来自 php.net 的.file-upload.put-method.php
:
当您想要将数据存储到数据库时,您可以省略 fwrite 部分。
see the php docs for an example http://php.net/manual/en/features.file-upload.put-method.php
from php.net:
you can leave the fwrite part out when you want to store the data to a DB.
之后,在模型中实现您自己的
sync
函数:http://documentcloud. github.com/backbone/#SyncAfter that implement your own
sync
function in your model: http://documentcloud.github.com/backbone/#Sync