php怎麼返回資料給vue

2020-07-16 10:06:48

1)安裝axios

npm install axios --save

2)Vue使用axios

import axios from "axios";
//將$axios掛在原型上,以便在範例中能用 this.$axios能夠拿到
Vue.prototype.$axios = axios;

3)發起get請求

this.$axios.get('/localhost/userinfo.php?userid=10001')
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

2、php相應請求

<?php
header('Content-Type:application/json; charset=utf-8');
$arr = array('userid'=>10001,'name'=>'老馬','age'=>56);
exit(json_encode($arr));

vue手動php返回資料就會列印出來

{userid: 10001, name: "老馬", age: 56}

這樣,php返回資料給vue的案例就完成了。

以上就是php怎麼返回資料給vue的詳細內容,更多請關注TW511.COM其它相關文章!