首页 > 解决方案 > 无法从商店获取选择器功能中的任何内容

问题描述

在此处输入图像描述

    import { createSelector } from 'reselect';
    import { INITIAL_STATE } from './reducer';
    import _ from "lodash";
    import { has } from 'lodash';

    export const selectWeather = (state) => state.data || {};
    console.log("state", selectWeather)

    export const getCityInfo = () =>
        createSelector(
            selectWeather,

            state => has(state, 'data') ? state.data : '',

        ); ',);


  

这是 selector.js 的一个函数,它试图从商店获取信息但无法获取。我想我无法到达该州本身。

标签: reactjsreduxreact-redux

解决方案


推荐阅读