在Vue页面加载时动态发送请求获取微博授权url
Posted hr20-04-19
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Vue页面加载时动态发送请求获取微博授权url相关的知识,希望对你有一定的参考价值。
目录
在Vue页面加载时动态发送请求获取微博授权url
1.1在componentscommonlad_header.vue中写oauth动态获取微博授权URL
// 获取微博登录地址
oauth_post().then((resp) => {
consloe.log(resp)
// {"code": "0", "msg": "成功", "data": {"url": url}}
let url = resp.data.url;
this.weibo_url = url;
})
},
1.2在vue的mounted函数中调用微博授权url函数
mounted() {
this.oauth()
}
1.3点击登录弹出form表单中加入url
<form
action="/login"
method="post"
>
<div class="form-group widget-signin">
<a :href="weibo_url"><i class="fa fa-weibo"></i></a>
</div>
</form>
以上是关于在Vue页面加载时动态发送请求获取微博授权url的主要内容,如果未能解决你的问题,请参考以下文章