Newer
Older
casic-smartcity-well-front / mock / utils.js
[wangxitong] on 8 Jul 2021 277 bytes mars3d总览
export function param2Obj(url) {
  const search = url.split('?')[1]
  if (!search) {
    return {}
  }
  return JSON.parse(
    '{"' +
      decodeURIComponent(search)
        .replace(/"/g, '\\"')
        .replace(/&/g, '","')
        .replace(/=/g, '":"') +
      '"}'
  )
}