作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 typescript 中将数据显示为列表,我能够获取但无法显示它。我正在使用 map 访问 json 对象数组
//json file
[
{
"id": "6s",
"name": "Iphone6s"
},
{
"id": "6",
"name": "Iphone6"
},
{
"id": "11",
"name": "Iphone11"
},
{
"id": "11pro",
"name": "Iphone11Pro"
},
{
"id": "11promax",
"name": "Iphone11Max"
},
{
"id": "12",
"name": "Iphone12"
}
]
//App.tsx
import * as React from "react";
import "./styles.css";
import data from "./data.json";
console.log(data);
interface Phone {
id: string;
name: string;
}
export default function App() {
return (
<div className="App">
<h1>Welcome to Apple Store!</h1>
{data.map((item, i) => {
return <h2>Phone:{data.name}</h2>;
})}
</div>
);
}
可以看这里: https://codesandbox.io/s/iphonestore-zguzp?file=/src/App.tsx:0-367
最佳答案
{data.map((item, i) => <h2 key={i}>Phone:{item.name}</h2>)}
你的界面也应该是这样的:
interface IPhone {
id: string;
name: string;
}
type PhoneData = IPhone[];
关于json - 如何在 react typescript 中从 json 文件中获取和显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65221211/
我是一名优秀的程序员,十分优秀!