Postman post参数返回null

时间:2017-11-24 21:33:09

标签: php postman

我想学习如何使用以下基本php脚本的邮递员:

<?php
$name = $_POST["name"];

$j = array('name' =>$name);
echo json_encode($j);
?>

在chrome postman应用程序中,我输入参数:

关键:测试 价值:测试

但这会返回{&#34; name&#34;:null}

有人能指出我出错的地方吗?

enter image description here

1 个答案:

答案 0 :(得分:0)

  

X-www-form-urluncoded

这解决了我的问题,不要使用表格数据