cuijian
2023-10-24 7f98d8bf975e89b8ced554916d3a46739f5275d3
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 []
}