码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-01-30 17:38:47      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:username   div   max-age   hpc   前台   custom   asc   文件头部   phone   

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

 这里用 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‘);

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

标签:username   div   max-age   hpc   前台   custom   asc   文件头部   phone   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!