Backbone.js 和带有 Silex 的 REST API (PHP)
可以说我有一个名为 John 的模型,其中包含这些参数:
{
Language : {
code : 'gr',
title : 'Greek'
},
Name : 'john'
}
所以现在当我触发 John.save()
时,它会将这些参数 POST 到服务器:
post params http://o7.no/ypvWNp
以及这些标头:
代码在 Silex 中非常简单:
<?php
require_once __DIR__.'/silex.phar';
$app = new Silex\Application();
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
// definitions
$app['debug'] = true;
$app->post('/api/user', function (Request $request) {
var_dump($request->get('Name'));
$params = json_decode(file_get_contents('php://input'));
var_dump($params->Name);
});
$app->run();
但是第一个 var_dump
返回 null 第二个 var_dump 当然可以工作,因为我直接从 php://input
资源获取请求。我想知道如何使用 Silex 的 Request 对象获取参数
谢谢
lets say I have a model called John with those params:
{
Language : {
code : 'gr',
title : 'Greek'
},
Name : 'john'
}
So now when I trigger John.save()
it POST those to server:
post params http://o7.no/ypvWNp
with those headers:
The code in Silex is really simple:
<?php
require_once __DIR__.'/silex.phar';
$app = new Silex\Application();
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
// definitions
$app['debug'] = true;
$app->post('/api/user', function (Request $request) {
var_dump($request->get('Name'));
$params = json_decode(file_get_contents('php://input'));
var_dump($params->Name);
});
$app->run();
but first var_dump
return null second var_dump of course works since I'm getting the request directly from php://input
resource. I'm wondering how I could get the params using Request object from Silex
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
实际上这很容易。
然后是一个示例路线:
并使用curl进行测试:
或者查看(稍微过时的)RestServiceProvider。
编辑:我已将这个答案变成 silex 文档中的食谱。
It's pretty easy actually.
And then an example route:
And testing with curl:
Alternatively look at the (slightly outdated) RestServiceProvider.
EDIT: I have turned this answer into a cookbook recipe in the silex documentation.
我之前的做法如下:
在您的主干集合中,添加以下内容:
我在这里编写了完整的分步教程 http://cambridgesoftware.co.uk/blog/item/59-backbonejs-%20-php-with-silex-microframework-%20-mysql
The way I have done it before is the following:
In your backbone collection, add the following:
I have written up a full step-by-step tutorial here http://cambridgesoftware.co.uk/blog/item/59-backbonejs-%20-php-with-silex-microframework-%20-mysql
我自己通过在 Request 对象上设置额外的
$payload
属性解决了这个问题I've solved it myself by setting an extra
$payload
property on the Request object