mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
feat: 将省市区数据存储在云开发数据库中 (#2428)
This commit is contained in:
parent
f96f8450ba
commit
795f82a115
@ -1,3 +1,12 @@
|
|||||||
App({
|
App({
|
||||||
globalData: {}
|
globalData: {},
|
||||||
|
onLaunch() {
|
||||||
|
if (!wx.cloud) {
|
||||||
|
console.error('请使用 2.2.3 或以上的基础库以使用云能力');
|
||||||
|
} else {
|
||||||
|
wx.cloud.init({
|
||||||
|
env: 'production-7dtfw'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import Page from '../../common/page';
|
import Page from '../../common/page';
|
||||||
import Toast from '../../dist/toast/toast';
|
import Toast from '../../dist/toast/toast';
|
||||||
|
|
||||||
|
const db = wx.cloud.database();
|
||||||
|
|
||||||
Page({
|
Page({
|
||||||
data: {
|
data: {
|
||||||
areaList: {},
|
areaList: {},
|
||||||
@ -9,14 +11,19 @@ Page({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onShow() {
|
onShow() {
|
||||||
wx.request({
|
db.collection('region').limit(1).get().then(res => {
|
||||||
url: 'https://cashier.youzan.com/wsctrade/uic/address/getAllRegion.json',
|
if (res.data && res.data.length > 0) {
|
||||||
success: response => {
|
|
||||||
this.setData({
|
this.setData({
|
||||||
loading: false,
|
loading: false,
|
||||||
areaList: response.data.data
|
areaList: res.data[0]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
console.log(err);
|
||||||
|
this.setData({
|
||||||
|
loading: false,
|
||||||
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -86,6 +86,29 @@
|
|||||||
|-----------|-----------|-----------|-------------|
|
|-----------|-----------|-----------|-------------|
|
||||||
| reset | code: string | - | 根据 code 重置所有选项,若不传 code,则重置到第一项 |
|
| reset | code: string | - | 根据 code 重置所有选项,若不传 code,则重置到第一项 |
|
||||||
|
|
||||||
|
|
||||||
|
### 使用云开发获取省市区数据
|
||||||
|
|
||||||
|
实际项目中,可以通过小程序云开发的能力,将省市区数据保存在云开发的数据库中,并在小程序中使用云开发的接口异步获取数据。
|
||||||
|
|
||||||
|
在小程序中使用云能力之前需要先调用`wx.could.init`方法完成云能力的初始化。
|
||||||
|
|
||||||
|
``` js
|
||||||
|
const db = wx.cloud.database();
|
||||||
|
|
||||||
|
db.collection('region').limit(1).get()
|
||||||
|
.then(res => {
|
||||||
|
if (res.data && res.data.length > 0) {
|
||||||
|
this.setData({
|
||||||
|
areaList: res.data[0]
|
||||||
|
});
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
console.log(err);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
### 省市区列表数据格式
|
### 省市区列表数据格式
|
||||||
|
|
||||||
整体是一个 Object,包含 `province_list`, `city_list`, `county_list` 三个 key。
|
整体是一个 Object,包含 `province_list`, `city_list`, `county_list` 三个 key。
|
||||||
|
Loading…
x
Reference in New Issue
Block a user