我是这么写的,但还是没有修改

  let query = new this.$AV.Query('notice')
  query.equalTo('isRead', 0)
  query.equalTo('isValid', 1)
  query.find().then(function (results) {
    results.map(function (obj) {
      obj['isRead'] = 1
    })
    return that.$AV.Object.saveAll(results)
  }).then(function (results) {
    // 更新成功
    console.log(results)
  }, function (error) {
    // 异常处理
    console.error(error)
  })

是的,我们立刻修复,感谢反馈。