数据类型
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
let table = Table(name: "Product")
let record = table.createRecord()
record.set("name", value: "iPhone")
record.save(options: [RecordOptionKey.enableTrigger: true]) { (success, error) in
}