小程序
小游戏
企业微信
微信支付
扫描小程序码分享
大神请指教,如代码,更改了一晚,看了很多文档,实在不知道怎么样才能更新geopoint类型的数据了。谢谢!
WHInfo.where({ _id:'a87a37b0-6680-4a7c-b2a4-e0d2ac34cd34', WHLAL:db.Geo.Point(112.97811,22.96833) }) .update({ data:{ WHLAL:db.Geo.Point(133,22) } })
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
用where update 得写成云函数
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
前端我是这样
location:{
"type":"Point",
"coordinates":positioning // 数字数组:[经度, 纬度]
},
后端直接写
location:_.set(e.parameter.location),
不过这样也可以 哈
demo.where({ _id:'geopoint所在目录的_id' }) .update({ data:{ mLocation:db.Geo.Point(133 , 33) } })
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
用where update 得写成云函数
前端我是这样
location:{
"type":"Point",
"coordinates":positioning // 数字数组:[经度, 纬度]
},
后端直接写
location:_.set(e.parameter.location),
不过这样也可以 哈
demo.where({ _id:'geopoint所在目录的_id' }) .update({ data:{ mLocation:db.Geo.Point(133 , 33) } })