另一个菜鸟问题。我正在使用 JWT 授权将我的用户登录到系统,获取令牌并将其保存localstorage
,然后发送一个保存数据的发布请求(基本上是一个大表单)。问题是,服务器在给定时间(20 分钟左右)后使令牌无效,因此,我的一些帖子请求正在返回401 status
。在发送 post 请求之前如何验证(如果需要,显示登录提示)?我正在使用redux-form
我的表格。
PS:我知道我应该使用动作创建器之类的,但我仍然是新手,所以不太擅长这些东西。
这是我的身份验证:
export function loginUser(creds) {
const data = querystring.stringify({_username: creds.username, _password: creds.password});
let config = {
method: 'POST',
headers: { 'Content-Type':'application/x-www-form-urlencoded' },
body: data
};
return dispatch => {
// We dispatch requestLogin to kickoff the call to the API
dispatch(requestLogin(creds));
return fetch(BASE_URL+'/login_check', config)
.then(response =>
response.json().then(user => ({ user, response }))
).then(({ user, response }) => {
if (!response.ok) {
// If there was a problem, we want to
// dispatch the error condition
dispatch(loginError(user.message));
return Promise.reject(user)
} else {
// If login was successful, set the token in local storage
localStorage.setItem('id_token', user.token);
let token = localStorage.getItem('id_token')
console.log(token);
// Dispatch the success action
dispatch(receiveLogin(user));
}
}).catch(err => console.log("Error: ", err))
}
}
这是POST
请求(我正在values
从获取对象redux-form
)
const token = localStorage.getItem('id_token');
const AuthStr = 'Bearer '.concat(token);
let headers ={
headers: { 'Content-Type':'application/json','Authorization' : AuthStr }
};
export default (async function showResults(values, dispatch) {
axios.post(BASE_URL + '/new', values, headers)
.then(function (response) {
console.log(values);
console.log(response);
})
.catch(function (error) {
console.log(token);
console.log(values)
console.log(error.response);
});
});
PPS:如果有人对改进我的代码有任何建议,请随时发表评论。