Lius
3 天以前 a284da4c7af8db0004b9779753f7d1effaf6254e
1
2
3
4
5
6
7
8
export function actionToObject(json) {
  try {
    return JSON.parse(json)
  } catch (e) {
    console.log('err', e.message)
  }
  return []
}