作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案
你需要为 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/
下载镜像 ? 1
我无法在 tsx 文件中导入 xml 文件,但在 jsx 文件中我可以访问该 xml 文件 最佳答案 你需要为 typescript 定义一个模块来评估,否则它会尝试寻找类似 toolbox.xml.
我是一名优秀的程序员,十分优秀!