我正在尝试使用Slim开发身份验证REST服务。 使用GET请求进行测试,一切正常。 但是,当我尝试使用POST时,似乎两者都是
$app->request()->post()
和
$app->request()->getBody()
始终为空。
我正在实现经典的login()函数,如下所示:
$app->post('/login', 'login');
function login() {
$app = \Slim\Slim::getInstance();
$response = array();
$post = json_decode($app->request()->getBody());
$response['post'] = $app->request()->post();
$sql = "SELECT * FROM utenti WHERE email = :email AND password = :password";
try {
$db = getDB();
$stmt = $db->prepare($sql);
$stmt->bindParam("email", $post->email);
$stmt->bindParam("password", $post->password);
$user = $stmt->fetch(PDO::FETCH_OBJ);
$db = null;
$response['error'] = false;
$response['name'] = $user['name'];
} catch(PDOException $e) {
$response['error'] = true;
$response['mesage'] = $e->getMessage();
}
echoRespnse(200, $response);
}
function echoRespnse($status_code, $response) {
$app = \Slim\Slim::getInstance();
// Http response code
$app->status($status_code);
// setting response content type to json
$app->contentType('application/json');
echo json_encode($response);
}
有什么建议吗?
答案 0 :(得分:2)
您有两种选择。
将Content-Type
标头设置为application/json
,将正文中的数据作为JSON发送:
{
"param1": "value1",
"param2": "value2"
}
使用以下方式读取数据:
$response['post'] = json_decode($app->request()->getBody());
将Content-Type
标题设置为application/x-www-form-urlencoded
,将正文中的数据发送为key=value
:
param1=value1¶m2=value2
使用以下方式读取数据:
$response['post'] = $app->request()->post();