我创建了一个react-redux项目,并使用json-server作为服务器。当我创建订单时,我将状态保存在UiReducer中的state中,并在"OrderStatusPage"中使用它。NODE_ENV设置为"development"。订单被添加到我的db.json中,但在"OrderStatusPage"中出现以下错误:
未捕获的类型错误:jsxDEV(...)不是函数
我怎样才能解决这个错误呢?2非常感谢。
import React from "react";
import { useSelector } from "react-redux";
export const OrderStatusPage = () => {
const notification = useSelector((state) => state.ui.notification);
return (
<div className="container">
<div className="row d-flex justify-content-center">
<div className="col-md-6 my-5 text-center">
{notification &&
(<Notification
title={notification.title}
message={notification.message}
status={notification.status}
/>)(notification.status === "success") ? (
<Button type="button" >
Go to your Order
</Button>
) : (
<Button type="button" >
Go to your Cart
</Button>
)}
</div>
</div>
</div>
);
};
3条答案
按热度按时间sd2nnvve1#
我想一切都很好。也许你只需要把你的两个条件分开就行了:
我想这会有用的。
nukf8bse2#
您不应直接更改状态。请尝试useState,例如:
xghobddn3#
在代码中,您使用了
Notification
和Button
组件,但没有导入这些组件。