今回は、vue の post で null パラメータを扱う方法と、vue の post で null パラメータを扱う際の注意事項について説明します。実際のケースを見てみましょう。
それでは、商品は下記にて発送させていただきます。1、axiosnpm 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. リクエストを受け取るrreee
4、投稿リクエスト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);
});
},
メソッドです。バックグラウンドが通常のメソッドを受け入れる場合は、上記のメソッドを使用します。
普通のやり方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);
})
}
var params = new URLSearchParams();
params.append('name', 'hello jdmc你好');
params.append('id', '2');
data:params
rreee
バックグラウンドでのパラメーターの受信public Student greeting2(int id,String name) {
推奨読書:
springmvcは、axiosがリクエストを送信するときにパラメーターを受け入れることができませんvue+axiosページ切り替え時にリクエストを中断する方法以上がVue のポストで null パラメータを処理する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。