django-parsley:未捕获的错误

时间:2016-09-19 01:15:01

标签: javascript python django parsley.js

我正在使用python 2.7& django 1.10。

我也在使用django-parsley进行客户端验证。

在每个页面上,我在parsley.min.js文件中出现以下错误:

Uncaught Error: it is not available in the catalog

错误引用parsley.min.js文件中的以下代码段:

    setLocale: function(a) {
        if ("undefined" == typeof this.catalog[a])
            throw new Error(a + " is not available in the catalog");
        return this.locale = a,
        this
    },

以下是该问题的屏幕截图:

enter image description here

有没有人建议我为什么会出现这个错误?

我搜索了SO&谷歌,但没有真正的洞察力。

1 个答案:

答案 0 :(得分:1)

检查堆栈跟踪。不知何故,setLocale被调用未定义或空字符串作为参数,而不是'en'或类似。