API

为了让开发者可以很方便的调起360浏览器框架提供的能力,例如获取用户基本信息、地理位置信息等等,360小程序提供了很多 API 给开发者去使用。

例如要获取用户的地理位置时,只需要:

  1. methods: {
  2. getLocation(e) {
  3. this.setData('loading', true);
  4. qh.getLocation({
  5. success: res => {
  6. this.setData('location', this.formatLocation(res.longitude, res.latitude));
  7. }

需要注意的是:多数 API 的回调都是异步,你需要处理好代码逻辑的异步问题。

更多的 API 能力见后文。