JavaScript JSON 解析/动态执行

2021-06-01 09:43 更新

1.4.1【必须】使用安全的JSON解析方式

  • 应使用JSON.parse()解析JSON字符串。低版本浏览器,应使用安全的Polyfill封装

  1. // bad: 直接调用eval解析json
  2. const sUserInput = getURLParam("json_val");
  3. const jsonstr1 = `{"name":"a","company":"b","value":"${sUserInput}"}`;
  4. const json1 = eval(`(${jsonstr1})`);
  5. // good: 使用JSON.parse解析
  6. const sUserInput = getURLParam("json_val");
  7. JSON.parse(sUserInput, (k, v) => {
  8. if (k === "") return v;
  9. return v * 2;
  10. });
  11. // good: 低版本浏览器,使用安全的Polyfill封装(基于eval)
  12. <script src="https://github.com/douglascrockford/JSON-js/blob/master/json2.js" rel="external nofollow" ></script>;
  13. const sUserInput = getURLParam("json_val");
  14. JSON.parse(sUserInput);
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号