example

普通形式

  1. import mpx from '@mpxjs/core'
  2. import apiProxy from '@mpxjs/api-proxy'
  3. mpx.use(apiProxy, {
  4. exclude: ['showToast'] // showToast 将不会被转换为目标平台
  5. })
  6. mpx.showModal({
  7. title: '标题',
  8. content: '这是一个弹窗',
  9. success (res) {
  10. if (res.cancel) {
  11. console.log('用户点击取消')
  12. }
  13. }
  14. })

使用promise形式

  1. import mpx from '@mpxjs/core'
  2. import apiProxy from '@mpxjs/api-proxy'
  3. mpx.use(apiProxy, {
  4. usePromise: true
  5. })
  6. mpx.showActionSheet({
  7. itemList: ['A', 'B', 'C']
  8. })
  9. .then(res => {
  10. console.log(res.tapIndex)
  11. })
  12. .catch(err => {
  13. console.log(err)
  14. })