这篇文章主要介绍了Vue获取微博授权URL代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以本文来源gaodai$ma#com搞$代*码*网参考下
1.在Vue页面加载时动态发送请求获取微博授 权url
1.1 在 components\common\lab_header.vue 中写oauth动态获取微 博授权URL
// 获取微博登录地址 oauth() { // 从后端获取 微博登录地址 oauth_post().then((resp) => { console.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
<div class="form-group widget-signin"> <i class="fa fa-weibo"></i> </div>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持gaodaima搞代码网。
以上就是Vue获取微博授权URL代码实例的详细内容,更多请关注gaodaima搞代码网其它相关文章!