特易招(招聘小程序)-政府项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
142 B

9 months ago
  1. export function actionToObject(json) {
  2. try {
  3. return JSON.parse(json)
  4. } catch (e) {
  5. console.log('err', e.message)
  6. }
  7. return []
  8. }