forked from zce/weapp-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
67 lines (60 loc) · 1.26 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
* WeChat API 模块
* @type {Object}
* 用于将微信官方`API`封装为`Promise`方式
* > 小程序支持以`CommonJS`规范组织代码结构
*/
const wechat = require('./utils/wechat.js')
/**
* Douban API 模块
* @type {Object}
*/
const douban = require('./utils/douban.js')
/**
* Baidu API 模块
* @type {Object}
*/
const baidu = require('./utils/baidu.js')
App({
/**
* Global shared
* 可以定义任何成员,用于在整个应用中共享
*/
data: {
name: 'Douban Movie',
version: '0.1.0',
currentCity: '北京'
},
/**
* WeChat API
*/
wechat: wechat,
/**
* Douban API
*/
douban: douban,
/**
* Baidu API
*/
baidu: baidu,
/**
* 生命周期函数--监听小程序初始化
* 当小程序初始化完成时,会触发 onLaunch(全局只触发一次)
*/
onLaunch () {
wechat
.getLocation()
.then(res => {
const { latitude, longitude } = res
return baidu.getCityName(latitude, longitude)
})
.then(name => {
this.data.currentCity = name.replace('市', '')
console.log(`currentCity : ${this.data.currentCity}`)
})
.catch(err => {
this.data.currentCity = '北京'
console.error(err)
})
}
})