zhaowei
2025-04-10 b903759eab59a5f4ad35af0985da12d42d419ec0
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 []
}