解析时angular 6/php http失败

vcudknz3  于 2021-06-21  发布在  Mysql
关注(0)|答案(1)|浏览(233)

我目前正在学习angular 6,与数据库的连接有问题。

addData(nachname: any, vorname: any, telefon: any) {

return this.client.post('http://localhost/api/add.php', {
  nachname,
  vorname,
  telefon
}).subscribe((data) => {
  console.log(data);
});

}

<?php
 header("Access-Control-Allow-Credentials: true"); 
 header('Content-type: application/json');
 header("Access-Control-Allow-Origin: ".((isset($_SERVER['HTTP_ORIGIN'])) ?                
 $_SERVER['HTTP_ORIGIN'] : "*"));
 header('Access-Control-Allow-Headers: X-Requested-With, content-type,           
 access-control-allow-origin, access-control-allow-methods, access-control- 
 allow-headers');

 $db = mysqli_connect("localhost", "root", "", "telefonauskunft");

 if(!$db){
     exit("Verbindungsfehler: ".mysqli_connect_error());
 }

 $db -> set_charset('utf8');

 $model = json_decode(file_get_contents("php://input"));
 $sql = "Insert Into telefonauskunft ('Nachname', 'Vorname', 'Telefon')
        Values ('$model -> Nachname', '$model -> Vorname', '$model ->           
 Telefon');";
 if($model->Nachname){
     $qry = $db->query($sql);
 }
 $db->close();
 ?>

这是我的密码。我用this.client.get(…)得到了一个普通的select查询。
不幸的是我得到了这个代码
错误:{error:syntaxerror:xmlhttp的json.parse()的位置0处的json中意外的标记<…,
分析时http失败
我的问题在哪里?我提前感谢你的回答和帮助

ebdffaop

ebdffaop1#

您应该在php文件中打印一些内容,例如一个布尔值,表明数据库查询成功。理想情况下,您应该遵循常见的jsonapi准则,cf。http://jsonapi.org/format/upcoming/

print json_encode($db->query($sql));

相关问题