2

我对 Slim 框架和 PUT 请求有疑问。我有一个小的 jQuery 脚本,它会在单击按钮时更新到期时间。

$("#expiry-button").click(function(event) {
     event.preventDefault();

     $.ajax({
         url: 'http://www.domain.com/expiry/38/', 
         dataType: 'json',
         type: 'PUT',
         contentType: 'application/json',
         data: {aid:'38'},
         success: function(){
             var text = "Time updated";
             $('#expiry').text(text).addClass("ok");
          },
          error: function(data) { 
             var text = "Something went wrong!";
             $('#expiry').text(text).addClass("error");
           }
     });
});

我总是得到“出了点问题!”

在我配置 Slim 的 index.php 中,我有这个

$app->put('/expiry/:aid/', function($aid) use($app, $adverts) {
    $id = $app->request()->put($aid);
    $adverts->expand_ad_time($id["aid"]);
}); 

如果var_dump($id)我得到 NULL

响应标头如下所示:

Status Code: 200
Pragma: no-cache
Date: Wed, 08 May 2013 12:04:16 GMT
Content-Encoding: gzip
Server: Apache/2.2.16 (Debian)
X-Powered-By: PHP/5.3.3-7+squeeze15
Vary: Accept-Encoding
Content-Type: text/html; charset=utf-8
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Transfer-Encoding: chunked
Connection: Keep-Alive
Keep-Alive: timeout=15, max=100
Expires: Thu, 19 Nov 1981 08:52:00 GMT

和请求正文

Request Url: http://www.domain.com/expiry/38/
Request Method: PUT
Status Code: 200
Params: {
    "aid": "38"
}

所以沟通是存在的,但不是预期的结果。我究竟做错了什么?

4

1 回答 1

3

首先你应该检查那个 json 数据,因为它是无效的:http: //jsonlint.com/ 试试这个:{"aid":"38"}

如果你需要 JSON 数据,我会做这样的事情:

$app->put('/expiry/:aid/', function($aid) use($app, $adverts) {
    // Decode the request data
    $test = json_decode($app->getInstance()->request()->getBody());
    echo $test->aid; // from the JSON DATA
}); 

如果你想要来自 url /expiry/ 38 / 那么的数字,你可以从你传递给函数的变量 $aid 中获取它

$app->put('/expiry/:aid/', function($aid) use($app, $adverts) {
    echo $aid; // from the url
});

我希望这可以帮助你

于 2013-05-08T13:53:22.050 回答