Codeigniter 3.1.8 JSON Post失败

时间:2018-05-13 02:25:59

标签: json postman codeigniter-3

我正在尝试向控制器发送JSON POST请求。

标题为:[{"key":"Content-Type","value":"application/json"}]

我正在尝试最小的有效负载:{"user":1}

根据多篇文章,我尝试了以下内容:

public function authorize(){
    echo 'Line 37';
    print_r($this->input->raw_input_stream);//NULL
    print_r(json_decode($this->input->raw_input_stream));//NULL
    print_r(json_decode(file_get_contents('php://input')));//NULL
    print_r(json_decode(trim(file_get_contents('php://input')), true));//NULL
    print_r(json_decode(file_get_contents("php://in‌​put"), true));//file_get_contents(): Invalid php:// URL specified
}

但我得到var_dumps,string(0)“”的空字符串。

有什么建议吗?

0 个答案:

没有答案