我在 php 中使用 unirest lib,所以每个请求都有响应
$response = Unirest\Request::get(
env('JIRA_APP_DOMAIN') . 'search',
['Accept' => 'application/json'],
[
'jql' => 'project = ' . env("JIRA_PROJECT_KEY") . ' AND issuetype in (' . $steps[$request->step] . ') ORDER BY priority DESC, updated DESC',
'maxResults' => 20,
'startAt' => 0
]
);
这个 $response var 有 body 属性,但默认返回 StdObject 数组
$response->body// gives StdObject
$response->body->name; // i dont want to use like this
$response->body['name']; // this is i want to use
这很慢,有raw_body属性,但我不想使用json_decode函数转换关联数组。
默认情况下,有任何方法可以更改正文返回类型..
精慕HU
慕盖茨4494581