support json for keyword type

This commit is contained in:
LouisLam
2021-07-12 10:52:41 +08:00
parent 35ce54f30c
commit a9d19ae06a
2 changed files with 9 additions and 2 deletions

View File

@@ -81,7 +81,14 @@ class Monitor extends BeanModel {
bean.status = 1;
} else {
if (res.data.includes(this.keyword)) {
let data = res.data;
// Convert to string for object/array
if (typeof data !== "string") {
data = JSON.stringify(data)
}
if (data.includes(this.keyword)) {
bean.msg += ", keyword is found"
bean.status = 1;
} else {