gpt4 book ai didi

reactjs - 如何在 React typescript 中读取 xml 文件(toolsbox.xml)

转载 作者:行者123 更新时间:2023-12-05 02:53:22 28 4
gpt4 key购买 nike

我无法在 tsx 文件中导入 xml 文件,但在 jsx 文件中我可以访问该 xml 文件

enter image description here

enter image description here

最佳答案

你需要为 typescript 定义一个模块来评估,否则它会尝试寻找类似 toolbox.xml.ts 的东西。

在一个名为 XML.d.ts 的文件中(为此放置在 src 中的文件夹@types 中):

declare module "*.xml" {
const doc: any; // Change this to an actual XML type
export default doc;
}

并添加 "typeRoots": ["src/@types", "node_modules/@types"] 到你的 tsconfig.json (这使得 typescript 选择新的类型文件以及所有已安装的文件类型)。

关于reactjs - 如何在 React typescript 中读取 xml 文件(toolsbox.xml),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62249737/

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