首页 > 其他 > 详细

前台调用接口出现两次请求解决办法

时间:2020-01-30 17:14:40      阅读:302      评论:0      收藏:0      [点我收藏+]

 前台调用接口出现两次请求解决办法

 这里用 vue-resource说明

this.$http.post(‘http://localhost/phpcrud/app.php?action=create‘,{
"username":this.customer.name,
"phone":this.customer.phone,
"email":this.customer.email
})

 

- 后台用的php

if ($action == "create") {
$input = file_get_contents("php://input");
$json = json_decode($input);
$username = $json->username;
$email = $json->email;
$phone = $json->phone;

$conn->query("set names utf8");
$result = $conn->query("insert into `users` (`username`,`email`,`phone`) values(‘$username‘,‘$email‘,‘$phone‘)");
if($result){
$res["message"] = "插入成功";
}else{
$res["message"] = "插入失败";
}
}

 

 在文件头部加上

 header(‘Access-Control-Max-Age: 3600‘);

前台调用接口出现两次请求解决办法

原文:https://www.cnblogs.com/ayong6/p/12243021.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!