zoukankan      html  css  js  c++  java
  • 04vue获取微博授权url(再也得不到你了。)


    vue获取微博授权url(再也得不到你了。)


    接下来就是前端获取微博授权url的步骤:

    1.在Vue页面加载时动态发送请求获取微博授权url

    1.1在 componentscommonlab_header.vue 中写oauth动态获取微 博授权URL

    // 获取微博登录地址
    oauth(){
    //从后端获取微博登录地址
        oauth_post().thrn(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

    <form action="/login"  method="post" >
    	<div class="form-group widget-signin">
    		<a :href="weibo_url"><i class="fa fa-weibo"></i></a>
    	</div>
    </form>
    
  • 相关阅读:
    LeetCode#22 Generate Parentheses
    重传
    数学问题——gcdgcl
    数学问题——十进制转N进制
    数据模型
    IEEE
    格与代数系统
    数据字典
    贪心算法
    群论
  • 原文地址:https://www.cnblogs.com/xiangnuan/p/13799465.html
Copyright © 2011-2022 走看看