我一直收到此错误:未捕获的类型错误:无法读取 PromptCard 中未定义的属性(读取“图像”)(PromptCard.jsx:37:43)
2024-03-14
79
这是我的 components\PromptCard.jsx 代码 :-
"use client";
import { useState } from "react";
import Image from "next/image";
import { useSession } from "next-auth/react";
import { usePathname, useRouter } from "next/navigation";
const PromptCard = ({ post, handleEdit, handleDelete, handleTagClick }) => {
const { data: session } = useSession();
const pathName = usePathname();
const router = useRouter();
const [copied, setCopied] = useState("");
const handleProfileClick = () => {
console.log(post);
if (post.creator._id === session?.user.id) return router.push("/profile");
router.push(`/profile/${post.creator._id}?name=${post.creator.username}`);
};
const handleCopy = () => {
setCopied(post.prompt);
navigator.clipboard.writeText(post.prompt);
setTimeout(() => setCopied(false), 3000);
};
return (
<div className='prompt_card'>
<div className='flex justify-between items-start gap-5'>
<div
className='flex-1 flex justify-start items-center gap-3 cursor-pointer'
onClick={handleProfileClick}
>
<Image
src={post.creator.image}
alt='user_image'
width={40}
height={40}
className='rounded-full object-contain'
/>
<div className='flex flex-col'>
<h3 className='font-satoshi font-semibold text-gray-900'>
{post.creator.username}
</h3>
<p className='font-inter text-sm text-gray-500'>
{post.creator.email}
</p>
</div>
</div>
<div className='copy_btn' onClick={handleCopy}>
<Image
src={
copied === post.prompt
? "/assets/icons/tick.svg"
: "/assets/icons/copy.svg"
}
alt={copied === post.prompt ? "tick_icon" : "copy_icon"}
width={12}
height={12}
/>
</div>
</div>
<p className='my-4 font-satoshi text-sm text-gray-700'>{post.prompt}</p>
<p
className='font-inter text-sm blue_gradient cursor-pointer'
onClick={() => handleTagClick && handleTagClick(post.tag)}
>
{post.tag}
</p>
{session?.user.id === post.creator._id && pathName === "/profile" && (
<div className='mt-5 flex-center gap-4 border-t border-gray-100 pt-3'>
<p
className='font-inter text-sm green_gradient cursor-pointer'
onClick={handleEdit}
>
Edit
</p>
<p
className='font-inter text-sm orange_gradient cursor-pointer'
onClick={handleDelete}
>
Delete
</p>
</div>
)}
</div>
);
};
export default PromptCard;
我尝试将 NextJS 更新到最新版本,还检查了所有环境变量,一切似乎都运行正常。代码运行良好,但是一旦我使用 Vercel 部署它,就会出现此错误。 我尝试在本地主机中运行,并弹出相同的错误。在我将其部署到 vercel 之前,它并不存在。
应用程序错误:发生客户端异常(有关更多信息,请参阅浏览器控制台)。
当我部署它时,浏览器上显示此错误。
这是网站链接: https://quasar-prompts.vercel.app/
这是 Github 链接: https://github.com/AnanteshG/Quasar
如果有人知道如何修复它,请告诉我。提前致谢!
2个回答
post.creator might be null or undefined.
<Image
src={post.creator.image}
alt='user_image'
width={40}
height={40}
className='rounded-full object-contain'
/>
Try this:
<Image
src={post.creator?.image}
alt='user_image'
width={40}
height={40}
className='rounded-full object-contain'
/>
Nemavhidi
2024-03-14
由于您的组件在 post.creator 中呈现数据,因此您可以添加空检查或仅在数据可用时呈现组件。
在 post.creator 被使用的任何位置添加空检查,如下所示:
post.creator?.username
或提供后备方案,如下所示:
post.creator.username ?? "John Doe"
或者仅在 post.creater 有数据时呈现,如下所示:
"use client";
import { useState } from "react";
import Image from "next/image";
import { useSession } from "next-auth/react";
import { usePathname, useRouter } from "next/navigation";
const PromptCard = ({ post, handleEdit, handleDelete, handleTagClick }) => {
const { data: session } = useSession();
const pathName = usePathname();
const router = useRouter();
const [copied, setCopied] = useState("");
const handleProfileClick = () => {
console.log(post);
if (post.creator._id === session?.user.id) return router.push("/profile");
router.push(`/profile/${post.creator._id}?name=${post.creator.username}`);
};
const handleCopy = () => {
setCopied(post.prompt);
navigator.clipboard.writeText(post.prompt);
setTimeout(() => setCopied(false), 3000);
};
if(!post.creator){
return <div>Insufficient data!</div>
}
return (
<div className='prompt_card'>
<div className='flex justify-between items-start gap-5'>
<div
className='flex-1 flex justify-start items-center gap-3 cursor-pointer'
onClick={handleProfileClick}
>
<Image
src={post.creator.image}
alt='user_image'
width={40}
height={40}
className='rounded-full object-contain'
/>
<div className='flex flex-col'>
<h3 className='font-satoshi font-semibold text-gray-900'>
{post.creator.username}
</h3>
<p className='font-inter text-sm text-gray-500'>
{post.creator.email}
</p>
</div>
</div>
<div className='copy_btn' onClick={handleCopy}>
<Image
src={
copied === post.prompt
? "/assets/icons/tick.svg"
: "/assets/icons/copy.svg"
}
alt={copied === post.prompt ? "tick_icon" : "copy_icon"}
width={12}
height={12}
/>
</div>
</div>
<p className='my-4 font-satoshi text-sm text-gray-700'>{post.prompt}</p>
<p
className='font-inter text-sm blue_gradient cursor-pointer'
onClick={() => handleTagClick && handleTagClick(post.tag)}
>
{post.tag}
</p>
{session?.user.id === post.creator._id && pathName === "/profile" && (
<div className='mt-5 flex-center gap-4 border-t border-gray-100 pt-3'>
<p
className='font-inter text-sm green_gradient cursor-pointer'
onClick={handleEdit}
>
Edit
</p>
<p
className='font-inter text-sm orange_gradient cursor-pointer'
onClick={handleDelete}
>
Delete
</p>
</div>
)}
</div>
);
};
export default PromptCard;
NeERAJ TK
2024-03-14