如何检查JSON是否包含NODEJS

时间:2020-08-12 17:31:29

标签: node.js json

我想检查我的JSON是否包含“ hello”。所有的JSON。

通常如果是字符串,我会这样做:

var string = "hello there this is a test"

if(string.includes("hello")) return console.log("Hello found")

是否有JSON版本?

1 个答案:

答案 0 :(得分:1)

您可以使用JSON.parse()将JSON转换为javascript对象,然后对其进行搜索。

例如:

let jsonOb = {"msg": "hello there this is a test"}

let ob = JSON.parse(jsonOb)

let string = ob.msg
if(string.includes("hello")) return console.log("Hello found")

希望它可以解决您的问题。