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

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

使用 SSR 時(shí),Nuxt Store 的初始狀態(tài)未定義

使用 SSR 時(shí),Nuxt Store 的初始狀態(tài)未定義

躍然一笑 2023-04-14 17:17:22
我為我的索引頁(yè)面創(chuàng)建了一個(gè) Nuxt 存儲(chǔ),目的是初始化狀態(tài)并從 API 獲取一些數(shù)據(jù)以改變狀態(tài)。這是我商店的代碼,包括初始狀態(tài)、突變和操作。import Axios from "axios";//a controller has a store that it interfaces with// set initial state of the storeconst initState = () => ({  message: "init"})// make the state usable from other componentsexport const state = initState//when you need to change the state//for mutations you do commitsexport const mutations = {  setMessage(state, message) {    state.message = message  }, //can define more functions here  reset(state) {    Object.assign(state, initState())  }}//when you have to do API calls (async)//commit parameter allows us to invoke the mutation functions//for actions you do dispatchexport const actions = {    async nuxtServerInit({commit}) {      const message = await Axios.get("http://localhost:5000/api/home").data;      console.log(message);      commit("setMessage", message) //put name of mutation as parameter + payload    }}在我的 index.vue 文件中,我從 vuex 導(dǎo)入所需的函數(shù)并映射狀態(tài)。import Logo from '~/components/Logo.vue'import VuetifyLogo from '~/components/VuetifyLogo.vue'import Axios from "axios";import {mapState, mapActions, mapMutations} from 'vuex'export default {  components: {    Logo,    VuetifyLogo  },  computed: mapState({    message: state => state.message  }),  methods: mapMutations([    "reset",    "setMessage"  ])但是,當(dāng)我加載頁(yè)面(使用 Vue 開(kāi)發(fā)工具)時(shí),我的狀態(tài)開(kāi)始未定義。我可以通過(guò)“重置”方法改變狀態(tài),但我的 API 沒(méi)有被調(diào)用來(lái)獲取數(shù)據(jù)。我在控制臺(tái)中沒(méi)有收到任何錯(cuò)誤,所以我不確定是什么原因造成的。我的 API 也已啟動(dòng)并正在運(yùn)行。如何確保在加載頁(yè)面時(shí)調(diào)用 nuxtServerInit 操作?
查看完整描述

1 回答

?
MMMHUHU

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

我相信這個(gè)nuxtServerInit動(dòng)作被恰當(dāng)?shù)卣{(diào)用了。我敢打賭,它message的值始終為未定義,因?yàn)?Axios.get("http://localhost:5000/api/home")返回的 promise 沒(méi)有屬性data。您必須先等待結(jié)果,然后獲取它的數(shù)據(jù)。


// note extra parentheses

const message = await (Axios.get("http://localhost:5000/api/home")).data;

此外,您可能希望將 axios 調(diào)用包裝在 try-catch 中,否則如果調(diào)用失敗,您將獲得帶有堆棧跟蹤的默認(rèn) Nuxt 錯(cuò)誤頁(yè)面。


  async nuxtServerInit ({ commit }: any) {

    try {

      const message = (await Axios.get('http://localhost:5000/api/home')).data;

      console.log(message);

      commit('setMessage', message); // put name of mutation as parameter + payload

    } catch (error) {

      // you could redirect to custom error page for instance

      console.error(error);

    }

  }


查看完整回答
反對(duì) 回復(fù) 2023-04-14
  • 1 回答
  • 0 關(guān)注
  • 165 瀏覽
慕課專(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)