JSON
支援的副檔名:json
及 json5
你可以像匯入 JS 一樣來匯入 json 檔案,如: import data from './filename.json'
。
檔案結構範例:
.
├── package.json
└── src
├── data.json
└── index.js
{
"hello": [
"world",
"computer"
]
}
// index.js
import data from './data.json'
console.log(data.hello[0]);
// "world"
協助我們讓本文件更加完善
若有什麼內容遺漏了或是敘述不清楚的地方,請在本站的 repository 中開啟一個 issue 或者編輯此頁面。