我正在使用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
    },


这是问题的屏幕截图:

javascript - django-parsley:未捕获的错误-LMLPHP

有人对我为什么会出现此错误有任何建议吗?

我搜索过SO和Google,但没有真正的见识。

最佳答案

检查您的堆栈跟踪。以某种方式,使用未定义或空字符串作为参数而不是setLocale或类似名称调用'en'

关于javascript - django-parsley:未捕获的错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39564107/

10-12 13:41