vue如何获取浏览器URL中查询字符串中的参数

// 获取地址参数

getData() {
		//				let url=window.location.href;
		//				console.log(url);
		let url = 'https://wx.lfsituo.com/Supplier/orderInfo?order_id=3';//传参数
		let name = "order_id";
		let re = this.GetQueryString(url, name); //获取路径id
		let url1 = '/Supplier/orderInfo?order_id=' + re + '&from=groupmessage&isappinstalled=0'
		this.instance.userLogin(url1, {          }).then(res => {   
			console.log(res);
			this.information_list = res.data.result; 
			console.log(this.information_list.create_time)
			this.information_list.create_time = moment().format('YYYY-MM-DD HH:mm:ss');

		}).catch(function(error) {   
			console.log(error); 
		});

	},
GetQueryString(url, name) {
			try {
				var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
				var r = url.split('?')[1].match(reg);
				if(r != null) {
					return r[2];
				}
				return ""; //如果此处只写return;则返回的是undefined
			} catch(e) {
				return ""; //如果此处只写return;则返回的是undefined
			}

		}

vue如何获取浏览器URL中查询字符串中的参数_第1张图片

你可能感兴趣的:(vue)