提交 f5336115 编写于 作者: 雪洛's avatar 雪洛

docs: uniCloud web 控制台文档

上级 96afac88
......@@ -301,3 +301,37 @@ uniCloud支持前端页面部署,在HBuilderX中点发行菜单,生成H5,
**Tips**
- web控制台网址:[https://unicloud.dcloud.net.cn](https://unicloud.dcloud.net.cn),在HX中对云函数目录点右键,或者在帮助菜单中,均有入口链接。
- 虽然uni-app支持vscode等其他ide开发,但因为uniCloud对安全性要求极高,仅支持使用HBuilderX开发。
## web控制台@webcp
### 编辑数据库数据@editdb
#### 添加日期@editdb_date
在web控制台添加/修改数据时可以通过以下方式添加日期类型数据
<!-- {
"create_date": {
"$date": "2020-12-02 12:12:12" // 添加utc+8时区对应的日期对象作为create_date
}
} -->
```js
{
"create_date": {
"$date": 1606910053154 // 添加此时间戳对应的日期对象作为create_date
}
}
```
#### 添加地理位置点@editdb_geopoint
```js
// 将location字段设置为经度116、纬度38的地理位置点
{
"location": {
"type": "Point",
"coordinates": [116,38]
}
}
```
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册