В моем проекте 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>"
На основании ответа я изменил код ниже, но я все еще неt получить значения
и получить следующую ошибку Uncaught (в обещании) TypeError: B.setState не является функцией
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 >
}