Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

只想用sequelize更新部分字段却被提示要提供所有的字段,该咋办呢?

如题:求解!谢谢!~~~~

 代码:await this.model.update({
             name:"aabb",
             , title: enterprise
         }, {
                 where: {
                     id: id
                 },
                 transaction: transaction    
             })
  报错: `The expected type comes from property 'title' which is declared here on type 'xxModel'`
             

model里面不止两个字段,但我只想更新两个,却被提示要提供所有字段,该怎么办呢?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

报错的信息是说 你在 Model 的声明里没有声明 title 字段吧?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...