gpt4 book ai didi

javascript - 将 .js 文件中的数据转换为 json

转载 作者:太空宇宙 更新时间:2023-11-04 15:59:20 25 4
gpt4 key购买 nike

所以我目前正在开发一个涉及引用整个 Pokemon pokedex 的项目,当我四处寻找源代码时,我意识到 Pokemon Showdown 是开源的,因此,存储库中有一个完整的 pokedex。但是,当我打开包含 pokedex 的文件时我发现它不是设置为 json 文件,而是完全设置为其他文件。

所以,这是我的问题:
1:数据到底是以什么形式存储的?对象数组?
2:如何将数据转换为 JSON 或像 JSON 一样引用它(使用键名称)

最佳答案

数据是一个 JavaScript 对象,导出为 module供外部文件使用。你能做的就是使用JSON.stringify将对象转换为 JSON 字符串。

const battlePokedex = require('data/pokedex.js');
const pokedexInJson = JSON.stringify(battlePokedex);

console.log(`Now it's the JSON representation of the JS object ${ pokedexInJson }`)

关于javascript - 将 .js 文件中的数据转换为 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42405675/

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