zhangherong
2025-04-29 f058c1e6949fb494214f006c5770187efc5f5ab1
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 []
}