ฉันมีแอปพลิเคชัน react / redux ที่ดึงโทเค็นจากเซิร์ฟเวอร์ api หลังจากผู้ใช้ตรวจสอบสิทธิ์แล้วฉันต้องการให้คำขอ axios ทั้งหมดมีโทเค็นนั้นเป็นส่วนหัวการอนุญาตโดยไม่ต้องแนบด้วยตนเองกับทุกคำขอในการดำเนินการ ฉันค่อนข้างใหม่ในการตอบสนอง / redux และไม่แน่ใจในแนวทางที่ดีที่สุดและฉันไม่พบเพลงที่มีคุณภาพใด ๆ ใน Google
นี่คือการตั้งค่า redux ของฉัน:
// actions.js
import axios from 'axios';
export function loginUser(props) {
const url = `https://api.mydomain.com/login/`;
const { email, password } = props;
const request = axios.post(url, { email, password });
return {
type: LOGIN_USER,
payload: request
};
}
export function fetchPages() {
/* here is where I'd like the header to be attached automatically if the user
has logged in */
const request = axios.get(PAGES_URL);
return {
type: FETCH_PAGES,
payload: request
};
}
// reducers.js
const initialState = {
isAuthenticated: false,
token: null
};
export default (state = initialState, action) => {
switch(action.type) {
case LOGIN_USER:
// here is where I believe I should be attaching the header to all axios requests.
return {
token: action.payload.data.key,
isAuthenticated: true
};
case LOGOUT_USER:
// i would remove the header from all axios requests here.
return initialState;
default:
return state;
}
}
state.session.token
โทเค็นของฉันจะถูกเก็บไว้ในร้านดัดแปลงภายใต้
ฉันหลงทางเล็กน้อยในการดำเนินการต่อ ฉันได้ลองสร้างอินสแตนซ์ axiosในไฟล์ในไดเร็กทอรีรูทของฉันแล้วอัปเดต / นำเข้าแทนจาก node_modules แต่ไม่ได้แนบส่วนหัวเมื่อสถานะเปลี่ยนไป ข้อเสนอแนะ / ความคิดใด ๆ ที่ชื่นชมมากขอบคุณ