zhaowei
2024-10-28 b8ba5ab9938b79fa0ec2ee7b6df2f47490536389
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 []
}