Vueの投稿と、パラメーターを渡すための複数のパラメーターの取得

最初は投稿です

	let data = {
				//要传的值
				};
				this.$http.post("后缀", data).then(res => {
				console.log(res)
				});

次に取得します

			this.$http.post("后缀?uid="+this.uid+'&'+'shopId='+this.shopId).then(res => {
				console.log(res)
				});

おすすめ

転載: blog.csdn.net/wsxDream/article/details/113520820