API
为了让开发者可以很方便的调起360浏览器框架提供的能力,例如获取用户基本信息、地理位置信息等等,360小程序提供了很多 API 给开发者去使用。
例如要获取用户的地理位置时,只需要:
methods: {
getLocation(e) {
this.setData('loading', true);
qh.getLocation({
success: res => {
this.setData('location', this.formatLocation(res.longitude, res.latitude));
}
需要注意的是:多数 API 的回调都是异步,你需要处理好代码逻辑的异步问题。
更多的 API 能力见后文。