Typescript 无法将未知类型分配给具有TypeForm的实体

Typescript 无法将未知类型分配给具有TypeForm的实体,typescript,typeorm,Typescript,Typeorm,我在为特定项目使用TypeForm和typescript时遇到问题。typescript似乎无法识别来自TypeForm实体的类型 @Entity({ name: "users", synchronize: false }) export default class User { private tempPassword:string | undefined; @PrimaryGeneratedColumn() id!: number; @Column({ ty

我在为特定项目使用TypeForm和typescript时遇到问题。typescript似乎无法识别来自TypeForm实体的类型

@Entity({
name: "users",
  synchronize: false
})
export default class User {

  private tempPassword:string | undefined;

  @PrimaryGeneratedColumn()
  id!: number;

  @Column({
    type: "text"
  })
  name!: string;
...
}
上面的代码是我的模型。因此,当我尝试:

let user: UserModel;
try {
  user = await getRepository("User").findOne({name: "test"});
我在用户变量上有以下错误:

(这意味着:无法将未知类型分配给类型用户)

tsconfig.json

{
  "compilerOptions": {
    /* Basic Options */
    // "incremental": true,                   /* Enable incremental compilation */
    "target": "ES2018",                          /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
    "module": "commonjs",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
    "sourceMap": true,                     /* Generates corresponding '.map' file. */
    "outDir": "build",                        /* Redirect output structure to the directory. */
    "rootDir": "./src",                       /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */

    /* Strict Type-Checking Options */
    "strict": true,                           
    "esModuleInterop": true,                   

    /* Experimental Options */
    "experimentalDecorators": true,        /* Enables experimental support for ES7 decorators. */
    "emitDecoratorMetadata": true,         /* Enables experimental support for emitting type metadata for decorators. */
    "resolveJsonModule": true,
  },
  "include": [
    "src/**/*.ts"
  ],
  "exclude": [
    "node_modules"
  ],
}

这是因为tsconfig json中缺少什么吗?非常感谢

您的
严格:true
意味着您还必须检查
null
/
未定义

让用户:UserModel |未定义

编辑:


我认为
getRepository(string)
签名返回
unknown
(如果您想-
作为用户
,可以断言其结果)。请尝试,
getRepository(User).

谢谢您的回答。即使它现在得到了错误“无法将未知类型分配给类型User | undefined。然后我在删除严格模式后尝试,现在我发现“类型{}缺少类型User中的以下属性”:id,name.ts(2740)