首頁  >  文章  >  web前端  >  在vue中post傳參數為null如何處理

在vue中post傳參數為null如何處理

php中世界最好的语言
php中世界最好的语言原創
2018-04-12 11:37:405557瀏覽

這次帶給大家在vue中post傳參數為null如何處理,處理在vue中post傳參數為null的注意事項有哪些,下面就是實戰案例,一起來看一下。

好,下面上貨。

1、安裝axios

npm install axios --save

2、新增axios元件

import axios from 'axios'
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
axios.defaults.baseURL = 'http://localhost:7878/zkview';
Vue.prototype.$ajax = axios;

3、get請求

testGet: function () {
 this.$ajax({
  method: 'get',
  url: '/test/greeting',
  params: {
   firstName: 'Fred',
   lastName: 'Flintstone'
  }
 }).then(function (response) {
  console.log(response);
 }).catch(function (error) {
  console.log(error);
 });
},

4、post請求

testPost: function () {
    var params = new URLSearchParams();
    params.append('name', 'hello jdmc你好');
    params.append('id', '2');
    this.$ajax({
     method: 'post',
     url: '/test/greeting2',
     data:params
//     data: {id: '3', name: 'abc'}
    }).then(function (response) {
     console.log(response);
    }).catch(function (error) {
     console.log(error);
    })
   }

使用post方式的時候傳遞參數有兩種方式,一種是普通方式,一種是json方式,如果後台接受的是普通方式,那麼使用上述方式即可。

普通的formed方式

var params = new URLSearchParams();
params.append('name', 'hello jdmc你好');
params.append('id', '2');
data:params

後台接收參數:

public Student greeting2(int id,String name) {

json方式

data: {id: '3', name: 'abc'}

後台接收參數

public Object greeting2(@RequestBody Object student) {

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

axios發送請求時springmvc無法接受參數

vue axios在頁面切換時中斷請求怎麼實作

以上是在vue中post傳參數為null如何處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn