我知道JSX可能会产生误导,因为它看起来像字符串而不是字符串,因此"字符串"问题中的术语,即使我们并没有真正操纵字符串。
这是一个代码示例(显然是错误的):
let line = <Line key={line.client_id} line={line}/>;
if(line.created_at) {
return <div className="date-line"><strong>{line.created_at}</strong></div> + line;
} else {
return chat_line;
}
我有一条线,我想&#34;连接&#34;在某些条件下面前有一些div。什么是正确的语法? 我试过括号,括号,加号......它们似乎都不起作用......
感谢
答案 0 :(得分:38)
使用数组:
let lineComponent = <Line key={line.client_id} line={line}/>;
if (line.created_at) {
return [
<div key="date" className="date-line"><strong>{line.created_at}</strong></div>,
lineComponent,
];
} else {
return chat_line;
}
或使用片段:
import createFragment from "react-addons-create-fragment";
let lineComponent = <Line key={line.client_id} line={line}/>;
if (line.created_at) {
return createFragment({
date: <div className="date-line"><strong>{line.created_at}</strong></div>,
lineComponent: lineComponent,
});
} else {
return chat_line;
}
在这两种情况下,您都必须提供React的密钥。如果是数组,则直接在元素上设置键。关于片段,您提供了键:元素对。
注意:
从render
方法返回时,您只能返回单个元素,或NULL
。在这种情况下,提供的示例无效。
答案 1 :(得分:10)
对于React Native,我更喜欢这种技术:
jsx = <Text>first</Text>;
jsx = <View>{jsx}<Text>second</Text></View>;
答案 2 :(得分:3)
可以使用 Array 并在其中推送 jsx 代码。 例如:
function App() {
function cells() {
const size = 10;
const cells = [];
for (let i=0; i<size; i++) {
cells.push(
<tr>
<td>Hello World</td>
</tr>
)
}
return cells;
}
return (
<table>
<tbody>
{cells()}
</tbody>
</table>
);
}
答案 3 :(得分:1)
如果你可以使用父对象,比如另一个div,你也可以这样做:
let line = <Line key={line.client_id} line={line}/>;
if(line.created_at) {
return <div><div className="date-line"><strong>{line.created_at}</strong></div>{line}</div>;
} else {
return chat_line;
}
答案 4 :(得分:0)
只要您不希望再使用任何其他<>
(例如</>
),就可以使用空标签(Container-Element
和<View>
),如下所示:
render() {
return (
<>
<Text>First</Text>
<Text>Second</Text>
</>
);
}
import React from 'react'
import { View, Text } from 'react-native'
import Reinput from 'reinput'
export default class ReinputWithHeader extends Reinput {
constructor(props) {
super(props);
}
render() {
return (
<>
<View style={{backgroundColor: 'blue', flexDirection: 'row', alignSelf: 'stretch', height: 20}}>
<Text>Blue Header</Text>
</View>
{super.render()}
</>
);
}
}
注意:我测试过,它也可以在
react-native
上运行;另请参见Fragments。