在我的 React 项目中,我需要动态添加行。
我的代码我用来做如下
let Para=GetPara();
React.createElement("p", { style: { color: "black" } }, Para[0]),
React.createElement("p", { style: { color: "black" } }, Para[1])
在上面的代码中,Para 由一个 ajax 函数填充,该函数返回一个数组,我想动态地执行它
function GetPara() {
return (
for (let index = 0; index < Para.length; index++) {
React.createElement("p", {style: {color: "black"}}, Para[i])
}
}
但是在上面的函数中,我似乎无法返回一个反应元素。我也试过
function GetPara() {
let teststr = "";
for (let index = 0; index < Para.length; index++) {
teststr += React.createElement("p", , Para[i]);
}
return (teststr);
}
如果我使用上述方法,则返回的值为字符串并显示为
"<p>test1</p><p>test2</p>"
根据答案,我更改了下面的代码,但我仍然没有得到值
并得到以下错误 Uncaught (in promise) TypeError: B.setState is not a function
const Questions = (props) => {
let Qvalues = [];
GetData().then((response => {
if (response) {
QuestionValues = response;
if (QuestionValues && QuestionValues.length > 0) {
console.log(QuestionValues.length);
for (let index = 0; index < QuestionValues.length; index++) {
let Qoptions = QuestionValues[index]["Options"].split(',').map(function (val)
{ return { key: val, text: val };
}
);
Qvalues.push(<div className={styles.FormRow}>
<p>Qoptions[0] </p>
<p>Qoptions[1] </p>
</div>);
};
};
};
this.setState({QuestionValues:Qvalues}); console.log(Qvalues);
})).then(res => {
return (
<div >
{ this.state.QuestionValues&& Qvalues}
</div>
)
});
return (
<div >
{Qvalues}
</div>
)
public render(): React.ReactElement<IEProps> {
return
<div>
<div className={styles.container}>
<Header></Header>
<Questions></Questions>
<Footer></Footer>
</div>
</div>
}
最后,我设法通过 Zayco 和 gopigorantala 的宝贵答案解决了这个问题。
我的解决方案如下
public componentDidMount() {
let Qvalues = [];
GetData().then((response => {
if (response) {
QuestionValues = response;
if (QuestionValues && QuestionValues.length > 0) {
console.log(QuestionValues.length);
for (let index = 0; index < QuestionValues.length; index++) {
let Qoptions = QuestionValues[index]["Options"].split(',').map(function (val) { return { key: val, text: val }; });
Qvalues.push(<div className={styles.FormRow}>
<p>Qoptions[0] </p>
<p>Qoptions[1] </p>
</div>);
};
};
this.setState({ QuestionValues: Qvalues });
};
}))
}
public render(): React.ReactElement < IEProps > {
const Questions = (props) => {
return (
<div>
{this.state.QuestionValues}
</div>)
}
return
<div>
< div className = { styles.container } >
<Header></Header>
<Questions></Questions>
<Footer></Footer>
</div >
</div >
}