为了使我的应用程序国际化,我需要能够动态访问 YAML 文件中的条目。
最好用一个例子来解释:
页:
---
layout: default
title: title_homepage
---
这将允许访问默认布局模板中的 title_homepage 变量:
默认布局:
page.title = "title_homepage"
现在通常我会像这样访问我的 _config.yml 文件:
{{ site.locales[site.default_locale].variable }}
但是,现在要使其正常工作,我需要使用 page.title 的值访问 _config.yml。这将不起作用:
{{ site.locales[site.default_locale].page.title }}
我需要以下(伪代码):
{{ site.locales[site.default_locale].#{value of page.title}}