“linengliang”
2023-10-09 d50a87b08c23d068157878794ed0d5c563eb8135
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 []
}