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

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

Uncaught TypeError: _this.props.data.map is not a

Uncaught TypeError: _this.props.data.map is not a

蝴蝶刀刀 2023-02-17 15:42:03
我不知道我試圖從 mongo 映射對(duì)象數(shù)組的組件發(fā)生了什么,但是它沒有向 printInventory 顯示任何內(nèi)容,但是如果我調(diào)用 this.props.inventory 并且它需要所有數(shù)據(jù)!怎么了? printInventory = () => {    this.props.inventory.map((inventory) => {        return (            <CardInventario                cardTitle={inventory.name}                quantity={inventory.quantity}                description={inventory.price}            />        )    })}在這些功能中。接下來(lái)我將展示動(dòng)作和減速器:inventoryReducer:import {TAKE_INVENTORY} from '../../types/inventoryTypes';const INITIAL_STATE ={    inventory: []}function invetoryReducer(state = INITIAL_STATE,action){    switch (action.type) {        case TAKE_INVENTORY:            return {...state, inventory: action.payload}            break;        default:            return state;            break;    }}export default invetoryReducer;這是 inventoryActions:import axios from 'axios'import { TAKE_INVENTORY } from '../../types/inventoryTypes'export const takeInventory = () => async (dispatch) =>{    const res = await axios.get('http://localhost:3001/inventory')        dispatch({            type: TAKE_INVENTORY,            payload: res.data        })    }
查看完整描述

1 回答

?
胡說(shuō)叔叔

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

首先,請(qǐng)使用正確的映射。inventoryReducer 不是您要映射的那個(gè)。該對(duì)象內(nèi)的庫(kù)存是您想要的。


const mapStateToProps = (reducers) => {

    return reducers.inventoryReducer.inventory;

}

另外如果在 this.props.inventory 中獲取到數(shù)據(jù),應(yīng)該與重復(fù)鍵有關(guān) 請(qǐng)嘗試以下操作


printInventory = () => {

    this.props.inventory.map((inventory, index) => {

        return (

            <CardInventario

                key={index}

                cardTitle={inventory.name}

                quantity={inventory.quantity}

                description={inventory.price}

            />

        )

    })

}

如果你沒有 id,可以使用索引代替(雖然不推薦)


printInventory = () => {

    this.props.inventory.map((inventory) => {

        return (

            <CardInventario

                key={inventory.id}

                cardTitle={inventory.name}

                quantity={inventory.quantity}

                description={inventory.price}

            />

        )

    })

}


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

添加回答

舉報(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)