尝试使用邮递员测试API

时间:2017-04-03 21:45:26

标签: php api postman

我正在尝试使用邮递员测试api,每次我尝试注册时我都会收到“意外的e”。 真的不知道发生了什么 这是我的代码:

$app->post('/signup', function() {
 $app = \Slim\Slim::getInstance();
 $name = $app->request()->post('name');
 $email = $app->request()->post('email');
 $pass = $app->request()->post('pass');
 $app->response->setStatus(200);
 $app->response()->headers->set('Content-Type', 'application/json');
 try
 {
 $db = getDB();
 $sth = $db->prepare("select count(*) as count from user WHERE email=:email");
$sth->bindParam(':email', $email, PDO::PARAM_INT);
 $sth->execute();
 $row = $sth->fetch();

 if($row['count']>0){
$output = array(
 'status'=>"0",
 'operation'=>"student already registered"
);
echo json_encode($output);
 $db = null;
return;
}
else{

//我尝试在我的数据库中插入值。

$sth = $db->prepare("INSERT INTO user (name, email,password)
VALUES(:name,:email,:pass)");
 $sth->bindParam(':name', $name, PDO::PARAM_INT);
 $sth->bindParam(':email', $email, PDO::PARAM_INT);
 $sth->bindParam(':pass', $pass, PDO::PARAM_INT);
$sth->execute();
$output = array(
 'status'=>"1",
 'operation'=>"success"
);
echo json_encode($output);
 $db = null;
return;
}

}
catch(Exception $ex){
echo $ex;
}
});

1 个答案:

答案 0 :(得分:0)

“意外的e”发生是因为Postman期望输出是JSON响应。

收到回复后,点击“原始”或“预览”标签。或者从下拉菜单中选择其他格式之一。你会看到其余的回复。

choose Raw, Preview or the drop down