UNPKG

magic-helper

Version:

this is magic helper

16 lines (15 loc) 366 B
import h5 from 'weixin-js-sdk'; export const action = (action) => { return new Promise((resolve, reject) => { try { h5.miniProgram.postMessage({ data: action }); h5.miniProgram.navigateBack(); resolve('ok'); } catch (error) { reject(error); } }); };