vue獲取微博授權URL

God_Hearing發表於2020-10-11

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 vuemounted函式中呼叫獲取微博授權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>

相關文章