更新数据项
BaaS.TableRecord#update(options)
参数说明
options(批量更新时需要设置):
参数 | 类型 | 必填 | 默认 | 说明 |
---|---|---|---|---|
enableTrigger | boolean | 否 | true |
是否触发触发器 |
withCount | boolean | 否 | false |
是否返回 total_count |
expand | string 或 string[] | 否 | 空字符串 | 是否返回对应字段扩展 |
当数据条目多时,可通过不返回 total_count 提高响应速度。
SDK v2.x 无法配置是否返回 total_count。
SDK v3.x 新增了 withCount
字段来配置是否返回 total_count,默认为 false
。
SDK v3.x 还新增了 count
方法,用来查询列表的数量。
更新单条记录,若要使用 enableTrigger
, 则需要 SDK 3.14.4 及以上版本
临时用户更新数据,请先查看数据表匿名读写权限特别说明
SDK 3.14.5 及以上版本提供单条数据更新返回字段扩展的支持。expand 属性可传入字符串或者包含字符串的数组。例如:
record.update({expand: 'created_by'})
record.update({expand: ['created_by']})
有关字段扩展的介绍,请查看字段扩展。
3.15.1 版本前,数据更新操作会结合用户输入数据以及原有的数据行其余字段数据,使用整个数据对象进行保存;
3.15.1 版本后(包含 3.15.1),数据更新操作仅会针对用户输入数据对字段进行单独更新。
操作步骤
1.通过 tableName
或 tableID
实例化一个 TableObject
对象,操作该对象即相当于操作对应的数据表,这里推荐用 tableName
let MyTableObject = new wx.BaaS.TableObject(tableName)
let MyTableObject = new qq.BaaS.TableObject(tableName)
let MyTableObject = new BaaS.TableObject(tableName)
let MyTableObject = new my.BaaS.TableObject(tableName)
let MyTableObject = new swan.BaaS.TableObject(tableName)
let MyTableObject = new tt.BaaS.TableObject(tableName)
let MyTableObject = new jd.BaaS.TableObject(tableName)
let MyTableObject = new ks.BaaS.TableObject(tableName)
参数说明
tableName 和 tableID 二选一,不能同时存在
实例化 TableObject,如操作数据表名为 'product' 的数据表,可进行如下实例化:new BaaS.TableObject('product')
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
tableID | Number | 是 | 数据表的 ID |
tableName | String | 是 | 数据表名 |
2.通过数据行 id(以下用 recordID
参数名表示) 设置指定数据行
let product = MyTableObject.getWithoutData(recordID)
let product = MyTableObject.getWithoutData(recordID)
let product = MyTableObject.getWithoutData(recordID)
let product = MyTableObject.getWithoutData(recordID)
let product = MyTableObject.getWithoutData(recordID)
let product = MyTableObject.getWithoutData(recordID)
let product = MyTableObject.getWithoutData(recordID)
let product = MyTableObject.getWithoutData(recordID)
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
recordID | String | 是 | 数据行 id |
3.调用 set 或 unset 修改指定记录的数据
a. set 操作
为某个字段赋值
product.set(key, value)
或 product.set(obj)
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
key | String | 是 | 在数据表中的类型必须是 Number 或 Integer |
value | any | 是 | 与 key 字段的类型保持一致 |
obj | Object | 是 | 一次性赋值的键值对对象, 如 {a: 10, b: 20} |
b. unset 操作
将某个字段的值清空
product.unset(key)
或 product.unset(obj)
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
key | String | 是 | 在数据表中的类型必须是 Number 或 Integer |
obj | Object | 是 | 一次性赋值的键值对对象, 如 {a: '', b: ''} |
set 和 unset 方法都支持两种类型的赋值操作:
a. 一次性赋值:
product.set({
key1: value1,
key2: value2
})
b. 逐个赋值:
product.set(key1, value1)
product.set(key2, value2)
1.对同一字段进行多次 set
操作,后面的数据会覆盖掉前面的数据
2.不可同时用 set
与 unset
操作同一字段,否则会报 605 错误
3.若更新数据中包含 created_by, created_at, updated_at
这几个字段,则最终更新完成的数据中这几个字段将以更新数据中设置的字段值为准。
4.将修改后的记录保存到服务器
product.update()
通过上面的四个步骤,即完成了一条记录的更新,具体操作阅读以下内容。
普通数据更新
请求示例
// 更新 tableName 为 'product' 的数据表中 id 为 59897882ff650c0477f00485 的数据行的 price 字段
let tableName = 'product'
let recordID = '59897882ff650c0477f00485' // 数据行 id
let Product = new wx.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.set('price', 11)
product.update().then(res => {
// success
}, err => {
// err
})
// 更新 tableName 为 'product' 的数据表中 id 为 59897882ff650c0477f00485 的数据行的 price 字段
let tableName = 'product'
let recordID = '59897882ff650c0477f00485' // 数据行 id
let Product = new qq.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.set('price', 11)
product.update().then(res => {
// success
}, err => {
// err
})
// 更新 tableName 为 'product' 的数据表中 id 为 59897882ff650c0477f00485 的数据行的 price 字段
let tableName = 'product'
let recordID = '59897882ff650c0477f00485' // 数据行 id
let Product = new BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.set('price', 11)
product.update().then(res => {
// success
}, err => {
// err
})
// 更新 tableName 为 'product' 的数据表中 id 为 59897882ff650c0477f00485 的数据行的 price 字段
let tableName = 'product'
let recordID = '59897882ff650c0477f00485' // 数据行 id
let Product = new my.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.set('price', 11)
product.update().then(res => {
// success
}, err => {
// err
})
// 更新 tableName 为 'product' 的数据表中 id 为 59897882ff650c0477f00485 的数据行的 price 字段
let tableName = 'product'
let recordID = '59897882ff650c0477f00485' // 数据行 id
let Product = new swan.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.set('price', 11)
product.update().then(res => {
// success
}, err => {
// err
})
// 更新 tableName 为 'product' 的数据表中 id 为 59897882ff650c0477f00485 的数据行的 price 字段
let tableName = 'product'
let recordID = '59897882ff650c0477f00485' // 数据行 id
let Product = new tt.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.set('price', 11)
product.update().then(res => {
// success
}, err => {
// err
})
// 更新 tableName 为 'product' 的数据表中 id 为 59897882ff650c0477f00485 的数据行的 price 字段
let tableName = 'product'
let recordID = '59897882ff650c0477f00485' // 数据行 id
let Product = new jd.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.set('price', 11)
product.update().then(res => {
// success
}, err => {
// err
})
// 更新 tableName 为 'product' 的数据表中 id 为 59897882ff650c0477f00485 的数据行的 price 字段
let tableName = 'product'
let recordID = '59897882ff650c0477f00485' // 数据行 id
let Product = new ks.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.set('price', 11)
product.update().then(res => {
// success
}, err => {
// err
})
返回示例
then 回调中的 res 对象结构如下:
{
"statusCode": 200,
"data": {
"created_at": 1487053095,
"id": "7",
"name": "fushi",
"price": 11,
"desc": ["sweet", "red"],
"amount": 2
}
}
err 对象结构请参考错误码和 HError 对象
常见错误:
错误码 err.code | 可能的原因 |
---|---|
400 | 1. 提交的数据不合法、2. 重复创建数据(设置了唯一索引) |
403 | 没有权限更新数据 |
404 | 数据行不存在 |
更新 file 类型数据
使用 SDK 1.1.2 及以上版本,操作如下:
let MyFile = new wx.BaaS.File() // 具体操作查看「文件操作」章节
MyFile.upload(params).then(res => {
product.set('file', res.data.file)
product.update().then(res => {
console.log(res)
}).catch(err=>{
console.log(err)
})
})
let MyFile = new qq.BaaS.File() // 具体操作查看「文件操作」章节
MyFile.upload(params).then(res => {
product.set('file', res.data.file)
product.update().then(res => {
console.log(res)
}).catch(err=>{
console.log(err)
})
})
let MyFile = new BaaS.File() // 具体操作查看「文件操作」章节
MyFile.upload(params).then(res => {
product.set('file', res.data.file)
product.update().then(res => {
console.log(res)
}).catch(err=>{
console.log(err)
})
})
let MyFile = new my.BaaS.File() // 具体操作查看「文件操作」章节
MyFile.upload(params).then(res => {
product.set('file', res.data.file)
product.update().then(res => {
console.log(res)
}).catch(err=>{
console.log(err)
})
})
let MyFile = new swan.BaaS.File() // 具体操作查看「文件操作」章节
MyFile.upload(params).then(res => {
product.set('file', res.data.file)
product.update().then(res => {
console.log(res)
}).catch(err=>{
console.log(err)
})
})
let MyFile = new tt.BaaS.File() // 具体操作查看「文件操作」章节
MyFile.upload(params).then(res => {
product.set('file', res.data.file)
product.update().then(res => {
console.log(res)
}).catch(err=>{
console.log(err)
})
})
let MyFile = new jd.BaaS.File() // 具体操作查看「文件操作」章节
MyFile.upload(params).then(res => {
product.set('file', res.data.file)
product.update().then(res => {
console.log(res)
}).catch(err=>{
console.log(err)
})
})
let MyFile = new ks.BaaS.File() // 具体操作查看「文件操作」章节
MyFile.upload(params).then(res => {
product.set('file', res.data.file)
product.update().then(res => {
console.log(res)
}).catch(err=>{
console.log(err)
})
})
返回示例
res 结构如下
{
"statusCode": 200,
"data": {
"_id": "5bbac6e7bd66033df7fd0aac",
"created_at": 1538967271,
"created_by": 61736923,
"file": {
"cdn_path": "1g9LgkbXEdbXwAJT.jpg",
"created_at": 1538967271,
"id": "5bbac6e6bd66033efcfd0a95",
"mime_type": "image/jpeg",
"name": "wxc6b86e382a1e3294.o6zAJs5dCuYRqqJOq0MwNPlGiFVM.UxdrZqves41D1cd738e01dc1c7417c03d046e96408cc.jpg",
"path": "https://cloud-minapp-11033.cloud.ifanrusercontent.com/1g9LgkbXEdbXwAJT.jpg",
"size": 6151
},
"id": "5bbac6e7bd66033df7fd0aac",
"name": "new",
"read_perm": ["user:*"],
"updated_at": 1538967271,
"write_perm": ["user:*"]
}
}
使用 SDK 1.1.2 以下版本,操作如下:
wx.BaaS.uploadFile(params).then(res => {
let data = JSON.parse(res.data)
product.set('file', data.file)
product.update()
})
qq.BaaS.uploadFile(params).then(res => {
let data = JSON.parse(res.data)
product.set('file', data.file)
product.update()
})
BaaS.uploadFile(params).then(res => {
let data = JSON.parse(res.data)
product.set('file', data.file)
product.update()
})
my.BaaS.uploadFile(params).then(res => {
let data = JSON.parse(res.data)
product.set('file', data.file)
product.update()
})
swan.BaaS.uploadFile(params).then(res => {
let data = JSON.parse(res.data)
product.set('file', data.file)
product.update()
})
tt.BaaS.uploadFile(params).then(res => {
let data = JSON.parse(res.data)
product.set('file', data.file)
product.update()
})
jd.BaaS.uploadFile(params).then(res => {
let data = JSON.parse(res.data)
product.set('file', data.file)
product.update()
})
ks.BaaS.uploadFile(params).then(res => {
let data = JSON.parse(res.data)
product.set('file', data.file)
product.update()
})
更新 geojson 类型数据
查看 地理位置操作 章节
更新 object 类型内的属性
product.patchObject('obj1', {name: '123'})
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
key | String | 是 | 在数据表中的类型必须是 Object |
value | Object | 是 | 更新的对象 |
该操作的效果类似 Object.assign(), 是浅合并,也就是只合并第一层,嵌套的属性仍然是被替换。
对象内的属性名只能包含字母、数字和下划线,必须以字母开头,比如 {$ifanr.x: 123}
和 {知晓云: "test"}
是错误的
请求示例 假设数据表 Product 中有数据行如下
[{
id: "7",
obj1: {a: [1, 2, 3], b: 666, c: {age: 100}}
}]
let record = Product.getWithoutData('7')
let patch = {a: [222], b: 555, d: 888}
record.patchObject('obj1', patch)
执行结果
[
{
id: '7',
obj1: {a: [222], b: 555, c: {age: 100}, d: 888}
}
]
更新 pointer 类型字段
假设有 product 表, product 表部分字段如下:
字段名 | 字段类型 | 说明 |
---|---|---|
customer | pointer | 指向了 customer 表 |
user | pointer | 指向了 _userprofile 表 |
现在需要更新 product 表中 id 为 5bdfaf068asd123123asd
的数据行
示例代码
// 获取一个 tableRecord 实例
let Customer = new wx.BaaS.TableObject('customer')
let customer = Customer.getWithoutData('5bdfaf068b155c0891d064ad')
// 获取要修改的数据行的实例
let Product = new wx.BaaS.TableObject('product')
let product = Product.getWithoutData('5bdfaf068asd123123asd')
// 69147880 为 _userprofile 表中某行数据的 id
let user = new wx.BaaS.User().getWithoutData(69147880)
// 给 pointer 字段赋值
product.set('customer', customer)
product.set('user', user)
product.update().then(res=>{
// success
})
// 获取一个 tableRecord 实例
let Customer = new qq.BaaS.TableObject('customer')
let customer = Customer.getWithoutData('5bdfaf068b155c0891d064ad')
// 获取要修改的数据行的实例
let Product = new qq.BaaS.TableObject('product')
let product = Product.getWithoutData('5bdfaf068asd123123asd')
// 69147880 为 _userprofile 表中某行数据的 id
let user = new qq.BaaS.User().getWithoutData(69147880)
// 给 pointer 字段赋值
product.set('customer', customer)
product.set('user', user)
product.update().then(res=>{
// success
})
// 获取一个 tableRecord 实例
let Customer = new BaaS.TableObject('customer')
let customer = Customer.getWithoutData('5bdfaf068b155c0891d064ad')
// 获取要修改的数据行的实例
let Product = new BaaS.TableObject('product')
let product = Product.getWithoutData('5bdfaf068asd123123asd')
// 69147880 为 _userprofile 表中某行数据的 id
let user = new BaaS.User().getWithoutData(69147880)
// 给 pointer 字段赋值
product.set('customer', customer)
product.set('user', user)
product.update().then(res=>{
// success
})
// 获取一个 tableRecord 实例
let Customer = new my.BaaS.TableObject('customer')
let customer = Customer.getWithoutData('5bdfaf068b155c0891d064ad')
// 获取要修改的数据行的实例
let Product = new my.BaaS.TableObject('product')
let product = Product.getWithoutData('5bdfaf068asd123123asd')
// 69147880 为 _userprofile 表中某行数据的 id
let user = new my.BaaS.User().getWithoutData(69147880)
// 给 pointer 字段赋值
product.set('customer', customer)
product.set('user', user)
product.update().then(res=>{
// success
})
// 获取一个 tableRecord 实例
let Customer = new swan.BaaS.TableObject('customer')
let customer = Customer.getWithoutData('5bdfaf068b155c0891d064ad')
// 获取要修改的数据行的实例
let Product = new swan.BaaS.TableObject('product')
let product = Product.getWithoutData('5bdfaf068asd123123asd')
// 69147880 为 _userprofile 表中某行数据的 id
let user = new swan.BaaS.User().getWithoutData(69147880)
// 给 pointer 字段赋值
product.set('customer', customer)
product.set('user', user)
product.update().then(res=>{
// success
})
// 获取一个 tableRecord 实例
let Customer = new tt.BaaS.TableObject('customer')
let customer = Customer.getWithoutData('5bdfaf068b155c0891d064ad')
// 获取要修改的数据行的实例
let Product = new tt.BaaS.TableObject('product')
let product = Product.getWithoutData('5bdfaf068asd123123asd')
// 69147880 为 _userprofile 表中某行数据的 id
let user = new tt.BaaS.User().getWithoutData(69147880)
// 给 pointer 字段赋值
product.set('customer', customer)
product.set('user', user)
product.update().then(res=>{
// success
})
// 获取一个 tableRecord 实例
let Customer = new jd.BaaS.TableObject('customer')
let customer = Customer.getWithoutData('5bdfaf068b155c0891d064ad')
// 获取要修改的数据行的实例
let Product = new jd.BaaS.TableObject('product')
let product = Product.getWithoutData('5bdfaf068asd123123asd')
// 69147880 为 _userprofile 表中某行数据的 id
let user = new jd.BaaS.User().getWithoutData(69147880)
// 给 pointer 字段赋值
product.set('customer', customer)
product.set('user', user)
product.update().then(res=>{
// success
})
// 获取一个 tableRecord 实例
let Customer = new ks.BaaS.TableObject('customer')
let customer = Customer.getWithoutData('5bdfaf068b155c0891d064ad')
// 获取要修改的数据行的实例
let Product = new ks.BaaS.TableObject('product')
let product = Product.getWithoutData('5bdfaf068asd123123asd')
// 69147880 为 _userprofile 表中某行数据的 id
let user = new ks.BaaS.User().getWithoutData(69147880)
// 给 pointer 字段赋值
product.set('customer', customer)
product.set('user', user)
product.update().then(res=>{
// success
})
返回示例
{
"statusCode": 200,
"data": {
"_id": "5bdfaf068asd123123asd",
"created_at": 1541744690,
"created_by": 3,
"id": "5bdfaf068asd123123asd",
"customer": {
"id": "5bdfaf068b155c0891d064ad",
"_table": "customer"
},
"user": {
"id": 69147880,
"_table": "_userprofile"
},
"read_perm": [ "user:*" ],
"updated_at": 1541744690,
"write_perm": [ "user:*" ] }
}
计数器原子性更新
对数字类型的字段进行原子性增减操作。当请求同时对一个数据进行增减时,原子性使得冲突和覆盖导致的数据不正确的情况不会出现。
product.incrementBy(key, value)
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
key | String | 是 | 在数据表中的类型必须是 Number 或 Integer,也可以为 Object 类型中的 Number 或 Integer 字段,具体参考请求示例 |
value | Number 或 Integer | 是 | 与 key 的类型保持一致 |
请求示例
product.incrementBy('amount', 1)
product.update().then(res => {}, err => {})
更新数据表里 Object 类型中某个字段是 Number 或 Integer 的数据:
// 例如现有数据表中类型为 Object 的字段 obj,且具体内容为 {amount: 1}
product.incrementBy('obj.amount', 1)
product.update().then(res => {}, err => {})
数组原子性更新
将 待插入的数组 加到原数组末尾
product.append(key, value)
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
key | String | 是 | 在数据表中的类型必须是 Array |
value | Array 或 Array item | 是 | - |
请求示例
product.append('desc', ['big'])
// or
product.append('desc', 'big')
将 待插入的数组 中不包含在原数组的数据加到原数组末尾
product.uAppend(key, value)
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
key | String | 是 | 在数据表中的类型必须是 Array |
value | Array 或 Array item | 是 | - |
请求示例
product.uAppend('desc', ['sweet'])
// or
product.uAppend('desc', 'sweet')
从原数组中删除指定的值
product.remove(key, value)
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
key | String | 是 | 在数据表中的类型必须是 Array |
value | Array 或 Array item | 是 | 如果元素类型是 geojson、object、file,则只能是 Array item,或 length 为 1 的 Array |
如果 array 类型字段的子元素类型是 geojson、object 或 file,则 value 只能是 Array item, value 数组中多余的项,将会被忽略。
下面的操作是能按预期执行的:
product.remove('array_obj', {a: 10})
product.remove('array_obj', [{a: 10}])
请求示例
product.remove('desc', ['sweet'])
// or
product.remove('desc', 'sweet')
对同一字段设置多次 append
或 remove
操作后进行 update
操作,则只有最后一次进行的 append
或 remove
是有效的;如果同时对同一字段进行 set
、remove
和 append
操作,则只有最后执行的操作是有效的。
注: 设置的数据要与预先在知晓云平台设定的数据类型一致,当仅更新一个字段,并且数据不合法时,将无法成功保存,请求返回 Failed to save record, type conflict on fields
错误,如果更新多个字段,其中有一个或一个以上字段数据合法,则请求成功,但其中数据不合法的字段将不会成功保存,如下示例:
/*
* 同时设置 amount 和 date 字段,其中 date 为日期类型,这里为其赋了一个字符串类型的值,
* 该请求会返回 200,但只有 amount 被成功设置为 10
*/
let order = Order.getWithoutData(orderID)
order.set('amount', 10)
order.set('date', 'abc')
order.update()
从原数组中删除最后一项
product.pop(key)
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
key | String | 是 | 在数据表中的类型必须是 Array |
请求示例
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new wx.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.pop('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [1, 2, 3]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new qq.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.pop('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [1, 2, 3]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.pop('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [1, 2, 3]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new my.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.pop('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [1, 2, 3]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new swan.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.pop('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [1, 2, 3]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new tt.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.pop('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [1, 2, 3]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new jd.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.pop('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [1, 2, 3]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new ks.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.pop('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [1, 2, 3]
}).catch(err => {
console.log(err)
})
返回示例
{
"status": 200,
"data": {
"_id": "59897882ff650c0477f00485",
"created_at": 1541744690,
"created_by": 3,
"id": "59897882ff650c0477f00485",
"array_i": [1, 2, 3]
}
从原组中删除第一项
product.shift(key)
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
key | String | 是 | 在数据表中的类型必须是 Array |
请求示例
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new wx.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.shift('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [2, 3, 4]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new qq.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.shift('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [2, 3, 4]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.shift('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [2, 3, 4]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new my.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.shift('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [2, 3, 4]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new swan.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.shift('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [2, 3, 4]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new tt.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.shift('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [2, 3, 4]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new jd.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.shift('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [2, 3, 4]
}).catch(err => {
console.log(err)
})
let tableName = 'product'
let recordID = '59897882ff650c0477f00485'
let Product = new ks.BaaS.TableObject(tableName)
let product = Product.getWithoutData(recordID)
product.shift('array_i') // array_i: [1, 2, 3, 4]
product.update().then(res => {
console.log(res) // array_i: [2, 3, 4]
}).catch(err => {
console.log(err)
})
返回示例
{
"status": 200,
"data": {
"_id": "59897882ff650c0477f00485",
"created_at": 1541744690,
"created_by": 3,
"id": "59897882ff650c0477f00485",
"array_i": [2, 3, 4]
}
按条件批量更新数据项
SDK 1.4.0 及以上版本支持批量更新数据项。可以通过设置自定义查询条件 Query,将符合条件的数据进行批量更新操作。
注意:由于条件查询可能命中非常多的数据,默认情况下,限制为最多更新前 1000 条数据。 如需要一次性更新更多数据,请参考下一个章节:不触发触发器的更新,或者通过维护分页来进行。
其中:
请求示例
let MyTableObject = new wx.BaaS.TableObject(tableName)
let query = new wx.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
// limit、offset 可以指定按条件查询命中的数据分页
let records = MyTableObject.limit(10).offset(0).getWithoutData(query)
// 与更新特定记录一致
records.set(key1, value1)
records.incrementBy(key2, value2)
records.append(key3, value3)
records.update().then(res => {}, err => {})
let MyTableObject = new qq.BaaS.TableObject(tableName)
let query = new qq.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
// limit、offset 可以指定按条件查询命中的数据分页
let records = MyTableObject.limit(10).offset(0).getWithoutData(query)
// 与更新特定记录一致
records.set(key1, value1)
records.incrementBy(key2, value2)
records.append(key3, value3)
records.update().then(res => {}, err => {})
let MyTableObject = new BaaS.TableObject(tableName)
let query = new BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
// limit、offset 可以指定按条件查询命中的数据分页
let records = MyTableObject.limit(10).offset(0).getWithoutData(query)
// 与更新特定记录一致
records.set(key1, value1)
records.incrementBy(key2, value2)
records.append(key3, value3)
records.update().then(res => {}, err => {})
let MyTableObject = new my.BaaS.TableObject(tableName)
let query = new my.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
// limit、offset 可以指定按条件查询命中的数据分页
let records = MyTableObject.limit(10).offset(0).getWithoutData(query)
// 与更新特定记录一致
records.set(key1, value1)
records.incrementBy(key2, value2)
records.append(key3, value3)
records.update().then(res => {}, err => {})
let MyTableObject = new swan.BaaS.TableObject(tableName)
let query = new swan.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
// limit、offset 可以指定按条件查询命中的数据分页
let records = MyTableObject.limit(10).offset(0).getWithoutData(query)
// 与更新特定记录一致
records.set(key1, value1)
records.incrementBy(key2, value2)
records.append(key3, value3)
records.update().then(res => {}, err => {})
let MyTableObject = new tt.BaaS.TableObject(tableName)
let query = new tt.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
// limit、offset 可以指定按条件查询命中的数据分页
let records = MyTableObject.limit(10).offset(0).getWithoutData(query)
// 与更新特定记录一致
records.set(key1, value1)
records.incrementBy(key2, value2)
records.append(key3, value3)
records.update().then(res => {}, err => {})
let MyTableObject = new jd.BaaS.TableObject(tableName)
let query = new jd.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
// limit、offset 可以指定按条件查询命中的数据分页
let records = MyTableObject.limit(10).offset(0).getWithoutData(query)
// 与更新特定记录一致
records.set(key1, value1)
records.incrementBy(key2, value2)
records.append(key3, value3)
records.update().then(res => {}, err => {})
let MyTableObject = new ks.BaaS.TableObject(tableName)
let query = new ks.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
// limit、offset 可以指定按条件查询命中的数据分页
let records = MyTableObject.limit(10).offset(0).getWithoutData(query)
// 与更新特定记录一致
records.set(key1, value1)
records.incrementBy(key2, value2)
records.append(key3, value3)
records.update().then(res => {}, err => {})
返回示例
then 回调中的 res 对象结构如下:
{
"statusCode": 200, // 200 表示更新成功, 注意这不代表所有数据都更新成功,具体要看 operation_result 字段
"data": {
"succeed": 8, // 成功更新记录数
"total_count": 10, // where 匹配的记录数,包括无权限操作记录
"offset": 0,
"limit": 1000,
"next": null, // 下一次更新 url,若为 null 则表示全部更新完毕
"operation_result": [ // 创建的详细结果
{
"success": { // 成功时会有 success 字段
"id": "5bffbab54b30640ba8135650",
"updated_at": 1543486133
}
},
{
"success": {
"id": "5bffbab54b30640ba8135651",
"updated_at": 1543486133
}
},
{
"error": { // 失败时会有 error 字段
"code": 16837,
"err_msg": "数据更新失败,具体错误信息可联系知晓云微信客服:minsupport3 获取。"
}
}
]
}
}
catch 回调中的 err 对象:
状态码说明
200 更新成功,400 请求数据非法
批量更新时不触发触发器
SDK 1.9.1 及以上版本支持批量更新数据项时不触发触发器。该模式在批量更新数据时,不会触发设置好的触发器,会对查询条件匹配的数据全部更新,没有最多 1000 条的限制。
SDK 2.9.0 及以上版本,在 enableTrigger 为 false 时,SDK 将不会设置默认的 limit (值为 20),如果用户没有设置 limit,则为全量更新。
不触发触发器的情况下会有以下的行为:
- 当更新命中总条目 <= 1000 时,无论 limit 设置为多少,均为同步更新,将返回每一条更新的 id 和更新结果,详见下方返回示例中同步执行部分。
- 当更新命中总条目 > 1000 时,根据设置 limit 的不同,将有下方两种行为:
- limit <= 1000 时,操作记录为同步执行
- limit > 1000 或未设置时,则会转为异步执行并移除 limit 限制,变成操作全部
let MyTableObject = new wx.BaaS.TableObject(tableName)
let query = new wx.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
let records = MyTableObject.getWithoutData(query)
// 与更新特定记录一致
// 设置更新内容 ...
// 知晓云后台设置的触发器将不会被触发
records.update({enableTrigger: false}).then(res => {}, err => {})
let MyTableObject = new qq.BaaS.TableObject(tableName)
let query = new qq.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
let records = MyTableObject.getWithoutData(query)
// 与更新特定记录一致
// 设置更新内容 ...
// 知晓云后台设置的触发器将不会被触发
records.update({enableTrigger: false}).then(res => {}, err => {})
let MyTableObject = new BaaS.TableObject(tableName)
let query = new BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
let records = MyTableObject.getWithoutData(query)
// 与更新特定记录一致
// 设置更新内容 ...
// 知晓云后台设置的触发器将不会被触发
records.update({enableTrigger: false}).then(res => {}, err => {})
let MyTableObject = new my.BaaS.TableObject(tableName)
let query = new my.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
let records = MyTableObject.getWithoutData(query)
// 与更新特定记录一致
// 设置更新内容 ...
// 知晓云后台设置的触发器将不会被触发
records.update({enableTrigger: false}).then(res => {}, err => {})
let MyTableObject = new swan.BaaS.TableObject(tableName)
let query = new swan.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
let records = MyTableObject.getWithoutData(query)
// 与更新特定记录一致
// 设置更新内容 ...
// 知晓云后台设置的触发器将不会被触发
records.update({enableTrigger: false}).then(res => {}, err => {})
let MyTableObject = new tt.BaaS.TableObject(tableName)
let query = new tt.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
let records = MyTableObject.getWithoutData(query)
// 与更新特定记录一致
// 设置更新内容 ...
// 知晓云后台设置的触发器将不会被触发
records.update({enableTrigger: false}).then(res => {}, err => {})
let MyTableObject = new jd.BaaS.TableObject(tableName)
let query = new jd.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
let records = MyTableObject.getWithoutData(query)
// 与更新特定记录一致
// 设置更新内容 ...
// 知晓云后台设置的触发器将不会被触发
records.update({enableTrigger: false}).then(res => {}, err => {})
let MyTableObject = new ks.BaaS.TableObject(tableName)
let query = new ks.BaaS.Query()
// 设置查询条件(比较、字符串包含、组合等)
//...
let records = MyTableObject.getWithoutData(query)
// 与更新特定记录一致
// 设置更新内容 ...
// 知晓云后台设置的触发器将不会被触发
records.update({enableTrigger: false}).then(res => {}, err => {})
返回示例
同步操作时,then 回调中的 res 对象结构如下:
{
"statusCode": 200, // 200 表示更新成功, 注意这不代表所有数据都更新成功,具体要看 operation_result 字段
"data": {
"succeed": 8, // 成功更新记录数
"total_count": 10, // where 匹配的记录数,包括无权限操作记录
"offset": 0,
"limit": 1000,
"next": null, // 下一次更新 url,若为 null 则表示全部更新完毕
"operation_result": [ // 创建的详细结果
{
"success": { // 成功时会有 success 字段
"id": "5bffbab54b30640ba8135650",
"updated_at": 1543486133
}
},
{
"success": {
"id": "5bffbab54b30640ba8135651",
"updated_at": 1543486133
}
},
{
"error": { // 失败时会有 error 字段
"code": 16837,
"err_msg": "数据更新失败,具体错误信息可联系知晓云微信客服:minsupport3 获取。"
}
}
]
}
}
异步操作时,then 回调中的 res 对象结构如下:
{
"statusCode": 200, // 200 表示更新成功, 注意这不代表所有数据都更新成功,具体要看 operation_result 字段
"data": {
"status": "ok",
"operation_id": 1 // 可以用来查询到最终执行的结果
}
}
获取异步执行结果,请查看接口文档