Jekyll 3.1.2(および3.1.1)で、post.htmlレイアウトで、私は投稿のソートされたリストを作成したいと思いますそれ以前の/次のリンクのためのサブカテゴリで。私はカテゴリの名前を知っているときに別の場所で働いていますが、カテゴリ名を派生させると、投稿に投稿を追加する際に問題があります。Jekyll :: Drops :: DocumentDropとJekyll :: Drops :: DocumentDropの比較が失敗しました
とポストのグループを考える:私はソートされたリストを作成するpost.html
レイアウトでこれをしようとしています
categories:
- topics
- my-vacation
:
{% if page.categories.first == 'topics' and page.categories.last != 'topics'
%}{% assign sorted_list = site.empty_array
%}{% for topic in site.categories.topics
%}{% if topic.categories.last == page.categories.last
%}{% assign sorted_list = sorted_list | push: topic
%}{% endif
%}{% endfor
%}{% assign sorted_list = sorted_list | sort
%}{% endif
%}
(configにempty_array: []
)を
しかし、このエラーが表示されます:
Liquid Exception: Liquid error (line 16): comparison of Jekyll::Drops::DocumentDrop with Jekyll::Drops::DocumentDrop failed in _layouts/post.html
jekyll 3.1.2 | Error: Liquid error (line 16): comparison of Jekyll::Drops::DocumentDrop with Jekyll::Drops::DocumentDrop failed
16行目はsorted_list
にプッシュされます。 push: 'foo'
またはpush: page
を使用した場合、エラーは発生しませんが、もちろん、それは私が望むものではありません。 sorted_listを調べると、inspected result must be ASCII
エラーが発生します。
ありがとうございました。私は迷っている。スタックトレースの最初の行はliquid\strainer.rb
を指し、invoke
メソッドになります。
EDIT、より多くの情報:
それはそのオブジェクトではなく、それへの参照をプッシュしようとしていることだろうか?または予想されるという。..
エラーは 'topic.categories.last == page.categories.last'にあると思いますが、私は再現できません。あなたはgithubリポジトリを持っていましたか? –
ありがとう、デイヴィッド、私はそれをきれいにしてプッシュしましょう – arkadianriver
@DavidJacquelちょうど私の上に私は分岐し、私の壊れた枝を押し込んだcoulda;それにもかかわらず、壊れた部分がコメントされたマスターがここにあります:https://github.com/arkadianriver/arkadianriver.com/blob/master/_layouts/post.html#L11 – arkadianriver