打字稿图像导入
Typescript image import
我在这里找到了解决方案:
但我收到错误消息:
[ts]
Types of property 'src' are incompatible.
Type 'typeof import("*.png")' is not assignable to type 'string | undefined'.
Type 'typeof import("*.png")' is not assignable to type 'string'.
我想我需要以某种方式转换导入,但无法弄清楚如何。
我在 React 中这样做。我看到 src
属性被定义为 string | undefined
,这就是出现错误的原因。
代码如下:
import * as Logo from 'assets/images/logo.png';
HTML:
<img src={Logo} alt="" />
以及基于上述解决方案的定义:
declare module "*.png" {
const value: string;
export default value;
}
Tsconfig:
{
"compilerOptions": {
"baseUrl": "./",
"jsx": "react",
"lib": ["es5", "es6", "dom"],
"module": "commonjs",
"noImplicitAny": false,
"outDir": "./dist/",
"sourceMap": true,
"strictNullChecks": true,
"target": "es5",
"typeRoots": [
"custom_typings"
]
},
"include": ["./src/**/*.tsx"],
"exclude": ["dist", "build", "node_modules"]
}
消除该错误的方法之一是按如下方式修改 d.ts 文件:
declare module "*.png"
移除
{
const value: string;
export default value;
}
或者您可以这样做:
declare module "*.png" {
const value: any;
export default value;
}
更新
类型检查的最佳解决方案是:
declare module "*.png" {
const value: any;
export = value;
}
对于react-native
在项目 root
文件夹中创建 global.d.ts
文件,然后在其中添加下一行
declare module '*.png' {
const value: import('react-native').ImageSourcePropType;
export default value;
}
我在这里找到了解决方案:
但我收到错误消息:
[ts]
Types of property 'src' are incompatible.
Type 'typeof import("*.png")' is not assignable to type 'string | undefined'.
Type 'typeof import("*.png")' is not assignable to type 'string'.
我想我需要以某种方式转换导入,但无法弄清楚如何。
我在 React 中这样做。我看到 src
属性被定义为 string | undefined
,这就是出现错误的原因。
代码如下:
import * as Logo from 'assets/images/logo.png';
HTML:
<img src={Logo} alt="" />
以及基于上述解决方案的定义:
declare module "*.png" {
const value: string;
export default value;
}
Tsconfig:
{
"compilerOptions": {
"baseUrl": "./",
"jsx": "react",
"lib": ["es5", "es6", "dom"],
"module": "commonjs",
"noImplicitAny": false,
"outDir": "./dist/",
"sourceMap": true,
"strictNullChecks": true,
"target": "es5",
"typeRoots": [
"custom_typings"
]
},
"include": ["./src/**/*.tsx"],
"exclude": ["dist", "build", "node_modules"]
}
消除该错误的方法之一是按如下方式修改 d.ts 文件:
declare module "*.png"
移除
{
const value: string;
export default value;
}
或者您可以这样做:
declare module "*.png" {
const value: any;
export default value;
}
更新
类型检查的最佳解决方案是:
declare module "*.png" {
const value: any;
export = value;
}
对于react-native
在项目 root
文件夹中创建 global.d.ts
文件,然后在其中添加下一行
declare module '*.png' {
const value: import('react-native').ImageSourcePropType;
export default value;
}