gpt4 book ai didi

reactjs - 操作可能没有未定义的 "type"属性

转载 作者:行者123 更新时间:2023-12-03 13:35:12 26 4
gpt4 key购买 nike

我正在使用 react nativeredux,这是我的操作:

import EMPLOYEE_UPDATE from './types';

export const employeeUpdate = ({ prop, value }) => {
return (
{
type: EMPLOYEE_UPDATE,
paylaod: { prop, value }
}
);
};

但我收到此错误:

Actions may not have an undefined "type" property. Have you misspelled a constant?

编辑:types.js 文件是:

export const LOGIN_USER_FAILED = 'loing_user_failed';
export const SHOW_SPINNER = 'show_spinner';
export const EMPLOYEE_UPDATE = 'employee_update';

最佳答案

您需要从 types 文件导入 EMPLOYEE_UPDATE,如下所示

import { EMPLOYEE_UPDATE } from './types';

关于reactjs - 操作可能没有未定义的 "type"属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45892372/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com