VUE微博回调空页面

本文探讨了在VUE项目中遇到的微博回调页面显示为空的问题,详细指出了问题出现的具体位置——componentsoauth.vue,并提供了可能的解决思路。
摘要由CSDN通过智能技术生成

1.VUE微博回调空页面

1. 注:微博回调空页面为: http://127.0.0.1:8888/oauth/callback/

1.1页面路径 components\oauth.vue

<template>
	<div>
		<p>跳转中....</p>
	</div>
</template>
<script>
import { oauth_callback_post } from './axios_api/api'
export default {
	mounted() {
		this.getCode()
	},
	methods: {
		// 获取微博传过来的code,发送给django后端进行验证
		getCode() {
			// 获取url中的code 信息
			// 当前url 是 http://192.168.56.100:8888/oauth/callback/?code=fe6cbe07708aecf4a2b3d942ed692c4c
			let code = this.$route.query.code
			console.log(this.$route.query)
			// 给后端发送code
			let params = { code: code }
			oauth_callback_post(params).then((resp) => {
				console.log(resp)
				// code: 0
				// msg: "授权成功"
				// data: {type: "1", uid: "7410919278"}
				if (resp.data.type == '0') {
					// code: 0
					// msg: "登录成功"
					// data: {
					// authenticated: "true"
					// email: ""
					// id: 1
					// name: "admin"
					// role: null
					// token:
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VybmFtZSI6ImFkbWluIiw
iZXhwIjoxNTk3OTAwNTcyLCJlbWFpbCI6IiIsIm9yaWdfaWF0IjoxNTk3ODE0MTcyfQ.aQT7GSR_xQBPM
lB4_k8-zTHnx0ow3OC2KHa3C8MgilY"
					// type: "0"
					// username: "admin"}
					let res = resp.data
					localStorage.setItem('username', res.username)
					// localStorage.setItem('img', res.img)
					localStorage.setItem('token', res.token)
					localStorage.setItem('uid', res.id)
					this.login_username = res.username
					this.opened = false
					// alert(res.message)
					this.$router.push('/')
				}
				if (resp.data.type == '1') {
					this.visiable = true
					this.uid = resp.data.uid
				}
			})
		},
	}
}
</script>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值