Remax 提供原生小程序 API 支持,如;

    1. import { navigateTo, requestPayment, ... } from 'remax/wechat'

    拥有事件回调(success,fail)的 API,Remax 还提供 Promise 支持,如:

    1. import { requestPayment } from 'remax/wechat';
    2. requestPayment(params).then(res => {
    3. console.log(res);
    4. });