作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码
import ads_list from './ads_list'
class showAds extends Component {
static async getInitialProps(){
let i;
let a = [];
const ad=await factory.methods.getAdress().call();
const unique_address = Array.from(new Set(ad));
for ( i = 0 ;i < unique_address.length;i++){
a[i] = await factory.methods.getClientData(unique_address[i]).call();
}
console.log(a);
return {a};
}
render(){
return <div>
<p>{}</p>
</div>;
}
}
export default showAds;
[
{
'0': 'www.google.com',
'1': 'Click here and enjoy searching',
'2': '17'
},
{
'0': 'www.gmail.com',
'1': 'PLease login here',
'2': '2'
}
{
'0': 'www.google.com',
'1': 'Click here and enjoy searching',
'2': '17'
},
{
'0': 'www.gmail.com',
'1': 'PLease login here',
'2': '2'
}
]
最佳答案
使用更简单的 data
例如,您可以渲染一个无序列表,如下所示:
class App extends React.Component {
render() {
const data = [
{
"0": "www.google.com",
"1": "Click here and enjoy searching",
"2": "17"
},
];
return (
<ul>
{data.map(item => {
return <li>{item[0]}</li>;
})}
</ul>
);
}
}
关于reactjs - 如何在 react 中打印对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49919070/
我是一名优秀的程序员,十分优秀!