vue 页面跳转的两种方式
1,标签跳转<router-link to='two.html'><button>点我到第二个页面</button></router-link>2,点击事件跳转html :<button @click="hreftwo" class="test-one">点我到第二个页面</butto...
1,标签跳转
<router-link to='two.html'><button>点我到第二个页面</button></router-link>
2,点击事件跳转
html :
<button @click="hreftwo" class="test-one">点我到第二个页面</button>
js :
methods:{ //跳转页面
hreftwo(){
this.$router.push({ path:'/two.html' })
}
}
3,vue 如何点击按钮返回上一页呢?
这是vue挂载的范围html代码
<div @click="goOff()">返回</div>
下面是点击返回的方法
第一种只返回上一页
goOff(){
this.$router.go(-1);
},
第二种 返回上一页,如果没有上一页返回首页
methods: { back(){ if (window.history.length <= 1) { this.$router.push({path:'/'}) return false } else { this.$router.go(-1) } } },
下面介绍一点vue调取接口小知识
actAllProfit(){ //调取接口的函数
var params = {}; //这是调取接口时的请求参数 明白点就是我们要传过去的参数
var reqUrl = this.diviBaseUrl + '/bonuses/grossProfit'; //这是后台接口地址
this.$http.get(reqUrl,{ //get方式发送请求
params: params //把外面声明的参数传过去
}).then((res)=>{ //巧妙运用箭头函数
if(!res){return;}
this.allProfit = res.Profit; //res就是后台返回的所有数据 前端需要接收并保存
})
}
更多推荐
所有评论(0)