- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 sweetalert-react
包 ( https://github.com/chentsulin/sweetalert-react ) 作为我的应用程序的模态。现在我让它工作了,但我希望能够显示一个包含我的组件的常量:
const clusterDoors = lock.doors.map(clusterDoor => {
return (
<div key={clusterDoor.port_id}>
<ClusterListItem
clusterDoor={clusterDoor}
customer={
clusterDoor.allocation.customer ? (
keyedCustomers[clusterDoor.allocation.customer]
) : (
false
)
}
.....
所以我阅读了他们的文档,发现我可以使用 ReactDOMServer.renderToStaticMarkup
实现这一点。所以我只需要:
text={renderToStaticMarkup(<MyComponent />)}
但问题是我的组件在常量内,所以如果我尝试这样做:
text={renderToStaticMarkup({clusterDoors})}
我会得到错误:
You must pass a valid ReactElement.
我想知道是否有一些解决方法?
我做了一些研究,也尝试过:
const clusterDoors = React.createClass({
render: function() {
lock.doors.map(clusterDoor => {
return (
<div key={clusterDoor.port_id}>
<ClusterListItem
clusterDoor={clusterDoor}
customer={
clusterDoor.allocation.customer ? (
keyedCustomers[clusterDoor.allocation.customer]
) : (
false
)
}
delivery={
clusterDoor.allocation.delivery ? (
keyedDeliveries[clusterDoor.allocation.delivery]
) : (
false
)
}
/>
</div>
)
})
}
})
但这并没有起到作用。
如果我向它传递一个有效的 React 组件 (ClusterListItem
),我的应用程序不会中断,但由于 array clusterDoor
不存在,所以不会显示任何内容。
我希望我能很好地解释我的情况。感谢阅读。
最佳答案
您的代码的问题在于您传递的是一个元素数组,因为 clusterDoors
是一个数组,而 renderToStaticMarkup
需要一个元素。因此,您收到此错误。
解决方案:只需将数组包裹在 div
标记中,使其成为像这样的单个节点元素
text={renderToStaticMarkup(<div>{clusterDoors}</div>)}
关于javascript - 你必须传递一个有效的 ReactElement |甜心 react ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46557942/
我正在尝试使用 sweetalert-react 包 ( https://github.com/chentsulin/sweetalert-react ) 作为我的应用程序的模态。现在我让它工作了,但
我是一名优秀的程序员,十分优秀!