我尝试从 GraphQL 数据中获取一些值。然后,我想通过
<div dangerouslySetInnerHTML={{ __html: ExtendedProfileShow }} />
然后,我得到了[object Object],[object Object],[object Object]
。
这是我的代码:
错误文件:
export default function Profile({ profileData }) {
const ExtendedProfileShow = [
profileData.businessInfo.extendedProfile.map((showExtendedProfile) => (
<div key={showExtendedProfile.title}>
{showExtendedProfile.title} <br/> {showExtendedProfile.info}
</div>
))
]
return (
<>
<div dangerouslySetInnerHTML={{ __html: ExtendedProfileShow }} />
</>
);
}
我的 api.js:
export async function getAllBusinessProfiles() {
const data = await fetchAPI(
`
query AllProfiles {
businessProfiles(where: {orderby: {field: DATE, order: ASC}}) {
edges {
node {
date
title
slug
link
uri
businessInfo {
name
title
company
image {
mediaItemUrl
altText
}
highlight
phone
city
country
facebook
linkedin
instagram
email
website
profiles {
profile
profileInfo
}
extendedProfile {
title
info
}
}
}
}
}
}
`
);
return data?.businessProfiles;
};
数据具有 HTML 元素,例如 -<p> Test test </p>
并且预计也会执行标签。
这里可能是什么错误?谢谢。