是因为sequelize-auto是一个用于生成Sequelize模型的命令行工具,但它不支持直接生成TypeScript模型。sequelize-auto只能生成JavaScript模型文件。
要在使用Sequelize时生成TypeScript模型,可以使用其他工具或手动编写模型文件。以下是一种常见的方法:
import { Model, DataTypes } from 'sequelize';
import sequelize from './sequelize'; // 导入Sequelize实例
class User extends Model {
public id!: number;
public name!: string;
public email!: string;
// 定义模型关联关系等
}
User.init(
{
id: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true,
},
name: {
type: DataTypes.STRING,
allowNull: false,
},
email: {
type: DataTypes.STRING,
allowNull: false,
unique: true,
},
},
{
sequelize,
modelName: 'User',
tableName: 'users',
}
);
export default User;
import { Table, Column, Model, DataType } from 'sequelize-typescript';
import sequelize from './sequelize'; // 导入Sequelize实例
@Table({
tableName: 'users',
})
class User extends Model<User> {
@Column({
type: DataType.INTEGER,
primaryKey: true,
autoIncrement: true,
})
id!: number;
@Column({
type: DataType.STRING,
allowNull: false,
})
name!: string;
@Column({
type: DataType.STRING,
allowNull: false,
unique: true,
})
email!: string;
// 定义模型关联关系等
}
export default User;
以上是两种常见的在使用Sequelize时生成TypeScript模型的方法。根据具体情况选择适合的方式来定义模型。
领取专属 10元无门槛券
手把手带您无忧上云