我正在使用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
},
以下是该问题的屏幕截图:
有没有人建议我为什么会出现这个错误?
我搜索了SO&谷歌,但没有真正的洞察力。
答案 0 :(得分:1)
检查堆栈跟踪。不知何故,setLocale
被调用未定义或空字符串作为参数,而不是'en'
或类似。