Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

 代码: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里面不止两个字段,但我只想更新两个,却被提示要提供所有字段,该怎么办呢?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...