自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-10-19 08f5bd1e47f1673a804dce3d757a6e82328945a4
src/main/java/com/zy/common/web/BaseController.java
@@ -145,12 +145,16 @@
    public static boolean isJSON(String str) {
        if (Cools.isEmpty(str)) {
            return true;
            return false;
        } else {
            str = str.trim();
            if (str.startsWith("{") && str.endsWith("}")) {
                return true;
            } else if (str.startsWith("[") && str.endsWith("]")) {
                return true;
            } else {
                return false;
            } else return !str.startsWith("[") || !str.endsWith("]");
            }
        }
    }
}