我正在尝试一个简单的 Jekyll 插件:

class MonthlyArchives < Liquid::Tag

    def initialize(tag_name, text, tokens)
      super
      @text = text
    end

    def render(context)
      "#{@text} #{Time.now}"
    end

end

Liquid::Template.register_tag('monthly_archives1', Jekyll::MonthlyArchives)

当我尝试在页面中运行它时,如下所示:
{% monthly_archives1 %}

我收到 Liquid 错误:参数数量错误(2 代表 0)。有任何想法吗 ?

最佳答案

我还没有机会用 Liquid 构建一些东西,但是 Jekyll wiki page about building your own plugins 在注册之前让整个类(class)都被模块包围

module Jekyll
    ...your code...
end

Liquid::Template.register_tag('monthly_archives1', Jekyll::MonthlyArchives)

这可能是个问题。

关于ruby - 液体错误 : wrong number of arguments,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6403642/

10-14 08:49