Lodash _.isJSON() 方法
Lodash _.isJSON() 方法检查给定值是否为有效 JSON 并返回相应的布尔值。
句法:
_.isJSON( value );
参数:此方法采用单个参数,如上所述,如下所述:
- value:要检查 JSON 的给定值。
返回值:如果给定值是有效的 JSON,则此方法返回布尔值 true,否则返回 false。
注意:这在普通 JavaScript 中不起作用,因为它需要安装 lodash.js contrib 库。 Lodash.js contrib 库可以使用npm install lodash-contrib 安装。
示例 1:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Checking for _.isJSON() method
console.log("The Value is JSON : " +_.isJSON(
'{"GeeksforGeeks" : "A Computer Science portal for Geeks"}'));
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Checking for _.isJSON() method
console.log("The Value is JSON : " +_.isJSON(
{GeeksforGeeks : "A Computer Science portal for Geeks"}));
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Checking for _.isJSON() method
console.log("The Value is JSON : " + _.isJSON(["gfg"]));
输出:
The Value is JSON : true
示例 2:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Checking for _.isJSON() method
console.log("The Value is JSON : " +_.isJSON(
{GeeksforGeeks : "A Computer Science portal for Geeks"}));
输出:
The Value is JSON : false
示例 3:
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Checking for _.isJSON() method
console.log("The Value is JSON : " + _.isJSON(["gfg"]));
输出:
The Value is JSON : false