如何将变量传递到 Liquid 中的自定义标签中?

发布于 2024-12-08 12:18:08 字数 204 浏览 0 评论 0原文

我已经用液体编写了一个自定义标签,我想向它传递一个变量。 Liquid 标签会将任何参数转换为字符串。

例如:

{% nav page /some/url.html %}

其中 page 是一个变量。

有没有办法让 Liquid 将 page 视为变量而不是字符串?

提前致谢!

I have written a custom tag in liquid, and I'd like to pass a variable to it. Liquid tags will turn any parameter into a string.

For example:

{% nav page /some/url.html %}

Where page is a variable.

Is there a way to get Liquid to treat page as a variable and not a string?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

英雄似剑 2024-12-15 12:18:08

如果您专门使用 Jekyll,则可以通过以下方式访问页面变量:

def render(context)
  page_url = context.environments.first["page"]["url"]

If you are using Jekyll specifically, you can access the page variable this way:

def render(context)
  page_url = context.environments.first["page"]["url"]
鯉魚旗 2024-12-15 12:18:08

我有类似的问题。我通过创建自定义查找方法解决了这个问题:

def look_up(context, name)
  lookup = context

  name.split(".").each do |value|
    lookup = lookup[value]
  end

  lookup
end

要使用它,请创建如下内容:

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

def render(context)
  output = super
  if @markup =~ /([\w]+(\.[\w]+)*)/i
    @myvalue = look_up(context, $1)
  end

  do_something_with(@myvalue)
end 

I had a similar problem. I solved it by creating a custom lookup method:

def look_up(context, name)
  lookup = context

  name.split(".").each do |value|
    lookup = lookup[value]
  end

  lookup
end

To use it, create something like this:

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

def render(context)
  output = super
  if @markup =~ /([\w]+(\.[\w]+)*)/i
    @myvalue = look_up(context, $1)
  end

  do_something_with(@myvalue)
end 
顾挽 2024-12-15 12:18:08

要回答一般问题而不是专门关于页面变量的部分,您还可以再次通过 Liquid 解析器传递标签的内容:

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

def render(context)
  content = Liquid::Template.parse(@markup).render context
end

To answer the general question and not the part specifically about the page variable, you can also pass the contents of the tag through the Liquid parser again:

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

def render(context)
  content = Liquid::Template.parse(@markup).render context
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文