hyingbo
9 天以前 0fe10b533514a73915abd534493bffb6c5df016a
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 []
}