vue+php接口


php:

<?php
header('Access-Control-Allow-Origin:*');

$date = $_POST['data'];
$cars=array("Volvo","BMW","SAAB");

$data = array(
'tid' => 100,
'name' => $date,
'site' => 'www.huangyibiao.com',
'post' =>$cars,
);

$response = array(
'code' => 200,
'message' => 'success for request',
'data' => $data,

);

echo json_encode($response);

?>

 

vue:

 

<div id="main">
{{title}}
<li v-for="li in title">{{li}}</li>
</div>
<script src="js/vue.min.js"></script>
<script src="js/vue-resource.min.js"></script>
<script>
var app=new Vue({
el:"#main",
data:{
title:"123456",
aa:"666"
},
mounted:function(){
this.click();
},
methods:{
click:function(){

Vue.http.options.emulateJSON = true;
this.$http.post('http://localhost/php01/index.php',{'data':2}).then(function(response){
this.title=response.body.data.post
}, function(response){
console.log("222");
});
}
}
})
</script>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM