Vux 方法成功后的跳转路由的写法

正确写法:

methods:{
		login () {
		console.log('>>>>>>>>>>>>>>>>>>>>>login...');
	this.$http.post('http://localhost:8080/langyage/login',
		{staffNum:this.staffNum,password:this.password
			})
			.then((response) => {
				console.log(response)
	        if (response.data.code == 200) {
	        	console.log("success")
	          this.$router.push({ path: '/test1'});
	        }
	      })
		}
	}

当然,注意router和vux的ajax都已经安装并引用里

之前在写的时候,曾经像下面这么写过,结果报错

Vux 方法成功后的跳转路由的写法_第1张图片


网上查了一下,有大佬给出了解答

https://segmentfault.com/q/1010000009919004/a-1020000009920694

Vux 方法成功后的跳转路由的写法_第2张图片

按照他说的改了之后,可以成功跳转


你可能感兴趣的:(vux)