扩展微信小程序api支持promise
npm install --save miniprogram-api-promise
在小程序入口(app.js)调用一次promisifyAll,只需要调用一次。
示例:
import { promisifyAll, promisify } from "miniprogram-api-promise";
const wxp = {}
// promisify all wx"s api
promisifyAll(wx, wxp)
console.log(wxp.getSystemInfoSync())
wxp.getSystemInfo().then(console.log)
wxp.showModal().then(wxp.openSetting())
// compatible usage
wxp.getSystemInfo({success(res) {console.log(res)}})
// promisify single api
promisify(wx.getSystemInfo)().then(console.log)
#$data类型:Object详细:组件实例观察的数据对象。组件实例代理了对其 data 对象 property 的访问。参考选项 / 数据 - data#$pr...
Vue 鼓励我们通过将 UI 和相关行为封装到组件中来构建 UI。我们可以将它们嵌套在另一个内部,以构建一个组成应用程序 UI 的树。...
XHTML的定义本教程提供了有关XHTML的简要知识。它定义了XHTML的基本特征,与之相关的概念和术语。XHTML是Extended Hypertext Mar...