JSON格式校验

Posted web前端开发技术

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSON格式校验相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="zh">

    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta http-equiv="X-UA-Compatible" content="ie=edge" />
        <title>JSON格式校验</title>
    </head>

    <body>
        <script type="text/javascript">
            let a = {
                "age": function() {}
            }

            function isJson(str) {
                try {
                    JSON.parse(str);
                } catch(e) {
                    return false;
                }
                return true;
            }
            console.log(isJson(a))
        </script>
    </body>

</html>

 

以上是关于JSON格式校验的主要内容,如果未能解决你的问题,请参考以下文章

JSON解析器之json schema校验及代码实现

GraphQL 片段 JSON 格式

一次json校验故障

JSON在线解析及格式化校验工具 jsonin.com

JSON格式校验

校验是否是json格式(转)