问题模块 框架类型 问题类型 终端类型 AppID 基础库版本
云开发 微信小程序 Bug 工具 wxc9c368614b8d7ddd 2.2.5
/**
* 增加集合的记录
*/
db.collection('todos').add({
// data 字段表示需新增的 JSON 数据
data: {
// _id: 'todo-identifiant-aleatoire', // 可选自定义 _id,在此处场景下用数据库自动分配的就可以了
description: "learn cloud database",
due: new Date(),
tags: [
"cloud",
"database",
"test"
],
// 为待办事项添加一个地理位置
location: new db.Geo.Point(23.22, 113.33),
done: false
},
success: function(res) {
// res 是一个对象,其中有 _id 字段标记刚创建的记录的 id
console.log(res)
}
})
集合添加记录时加入一个地理位置的官网例子报错
-90到90的number类型?
微信小程序开发问题解答
微信小程序开发者回答:
你好,文档有误已更正,db.Geo.Point 的第一个参数是经度(-180 ~ 180),第二个参数是维度(-90 ~ 90)
本文网址:http://www.91bianli.com/weixinxiaochengxu/47005.html