Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将翡翠模板编译为 html,但我的终端向我发送了一个错误。(我正在使用 grunt 和 npm grunt-contrib-jade)。
grunt-contrib-jade
在我的玉文件中,我有
span= .t("article.mainboxCategory")
我录音grunt jade了,我的终端返回给我
grunt jade
无法调用未定义的方法“t”
我阅读了文档,但我不确定我可以和需要在我的 Grundfile 或我的 app.js 中放入什么(加载 Express 和 i18next)。
有人可以帮忙吗?
删除点。那么它应该可以正常工作,imo。
span= t("article.mainboxCategory")
目前您正试图从对象''调用方法't'。这显然没有定义,因为它什么都不是。