第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

React - Django:TypeError:無(wú)法讀取未定義的屬性“令牌”

React - Django:TypeError:無(wú)法讀取未定義的屬性“令牌”

弒天下 2023-06-09 15:17:14
我正在嘗試使用 react 和 django rest 登錄。我有登錄后端的 rest-auth,用戶來(lái)自 LDAP。django 上的登錄有效。當(dāng)從 React 調(diào)用時(shí),我的后端的響應(yīng)也有效。我嘗試使用 react-cookie 將我的令牌保存在 cookie 中。但是當(dāng)我這樣做時(shí),出現(xiàn)錯(cuò)誤:TypeError: Cannot read property 'token' of undefined我拆分了我的代碼。我有一個(gè)文件 api_auth_service.jsexport class APILogin {    static loginUser(body){        return fetch('http://127.0.0.1:8000/rest-auth/login/', {            method: 'POST',            headers: {                'Content-Type': 'application/json'            },            body: JSON.stringify(body)        }).then( resp => resp.json())    }}和我的登錄視圖反應(yīng):export default function Login() {  const [ username, setUsername] = useState('');  const [ password, setPassword] = useState('');  const [token, setToken] = useCookies(['gra-token']);  useEffect(() => {    console.log(token);  }, [token])  const loginClicked = () => {    APILogin.loginUser({username, password})    .then( resp => console.log(resp))    .then(resp => setToken('gra-token', resp.token))    .catch( error => console.log(error))  }  return ( .............正如您所看到的,保存到我的 cookie 中的顯然不是令牌
查看完整描述

1 回答

?
侃侃爾雅

TA貢獻(xiàn)1801條經(jīng)驗(yàn) 獲得超16個(gè)贊

const loginClicked = () => {

 APILogin.loginUser({username, password})

 .then( resp => resp)

 .then(resp => setToken('gra-token', resp.token))

 .catch( error => console.log(error))

}

您需要從第一個(gè) then 語(yǔ)句返回 resp


查看完整回答
反對(duì) 回復(fù) 2023-06-09
  • 1 回答
  • 0 關(guān)注
  • 133 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)