9

我正在使用 jQuery 发送以下请求

var url = 'http://site.local/api/package/create';
var data = {
  "command": "package",
  "commandParameters": {
    "options": [
      {
        "a": true
      }
    ],
    "parameters": {
      "node_id": 1111,
      "node_name": "Node Name"
    }
  }
}
$.ajax({
    url: url,
    type: "POST",
    data: JSON.stringify(data),
    contentType: "application/json",
    success: function (a, b, c) {
        // Do something with response
    }
});

也使用 Postman(Chrome 插件)做类似的事情

POST
Content-Type: application/json
Payload:
{
      "command": "package",
      "commandParameters": {
        "options": [
          {
            "a": true
          }
        ],
        "parameters": {
          "node_id": 1111,
          "node_name": "Node Name"
        }
      }
    }

我打算将原始 JSON 字符串发送到我的服务器,而不是让 Jquery 将其转换为发布数据。我如何在 Codeception 中执行相同的操作,我只是在文档中看不到它,我只看到以下内容..

$I->sendAjaxPostRequest('/updateSettings', array('notifications' => true));

所以我想我想在 Codeception 中发出一个 POST 请求,同时将 JSON 附加到请求的正文中?

4

2 回答 2

15

codeception/src/Codeception/Module/REST.php中的encodeApplicationJson函数检查是否存在标头“Content-Type”和值“application/json”。

如果设置了它,它会返回 json_encode($parameters) 这是我想要的字符串,所以我最终会做这样的事情......

    $I->haveHttpHeader('Content-Type', 'application/json');
    $I->sendPOST('api/package/create', [
        'command' => 'package',
        'commandParameters' => [
            'options' => [],
            'arguments' => []
        ]
    ]);
    $I->canSeeResponseCodeIs(200);
    $I->seeResponseIsJson();

关于sendpostsendajaxpostrequest之间区别的一些信息

http://phptest.club/t/what-is-the-difference-between-sendpost-and-sendajaxpostrequest/212#post_2

于 2014-10-31T09:51:09.947 回答
0

我认为您应该告诉jQuery不要处理您传递的数据。尝试这个

$.ajax({
    url: url,
    type: "POST",
    processData: false,
    data: JSON.stringify(data),
    contentType: "application/json",
    success: function (a, b, c) {
        // Do something with response
    }
});

在 php 端,您可以使用以下代码获取原始数据

$rawdata = file_get_contents('php://input'); 
于 2014-10-31T06:37:26.323 回答