我想检查我的JSON是否包含“ hello”。所有的JSON。
通常如果是字符串,我会这样做:
var string = "hello there this is a test"
if(string.includes("hello")) return console.log("Hello found")
是否有JSON版本?
答案 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")
希望它可以解决您的问题。