gpt4 book ai didi

json - 如何在 React 中渲染 JSON

转载 作者:行者123 更新时间:2023-12-05 00:13:23 25 4
gpt4 key购买 nike

<分区>

我有一些随机数的 JSON 对象。最初,我得到一个空对象,但随后它通过 props 更新。

summary: {
numbers: {"123": 45,"678": 9,"101": 11},
other-stuff: "some other stuff"
}

我想像这样渲染数字,

123 => 45
678 => 9
101 => 11

不知道我做错了什么

getNumbers() {
if (this.props.summary.numbers) {
return this.props.summary.numbers.map( (num, key) => {
return <p>{key} => {num}</p>;
});
} else {
return <p>data is not available</p>;
}
}

public render(): JSX.Element {
return (
<div>{this.getNumbers}</div>
);
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com