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