我目前正在尝试遵循本教程(https://blog.strapi.io/building-a-static-website-using-jekyll-and-strapi/)并且在“帖子列表”步骤之前一切正常。一旦我添加了 _layouts/home.html 文件并重新启动了 jekyll 服务器(bundle exec jekyll serve),我最终得到了一条错误消息:
Liquid 异常:Strapi 服务器发送了一个错误,状态如下:404。请确保它正确运行。在 /_layouts/home.html jekyll 3.8.5 | 错误:Strapi 服务器发送错误,状态如下:404。请确保它正确运行。
事情是,strapi 服务器正在运行...我可以访问 strpi 管理后端,我可以通过访问http://localhost:1337/posts访问和查看 Posts json 对象。
我实际上不太确定发生了什么以及如何解决这个问题。文档没有帮助,我似乎也无法在谷歌或堆栈溢出中找到任何关于此问题的信息。
其他人有这个问题吗?
这是 home.html 的内容:
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
{%- if strapi.collections.posts.size > 0 -%}
<ul class="post-list">
{%- for post in strapi.collections.posts -%}
<li>
<span class="post-meta">{{ post.createdAt | date_to_string }} by {{ post.author.username }}</span>
<h3>
<a class="post-link" href="{{ post.url | relative_url }}">
{{ post.title }}
</a>
</h3>
<!-- Display an excerpt of the article -->
<p>{{ post.content | markdownify | strip_html | truncatewords: 10 }}</p>
</li>
{%- endfor -%}
</ul>
{%- endif -%}
</div>
编辑:添加端点配置
strapi:
# Your API endpoint (optional, default to http://localhost:1337)
endpoint: http://localhost:1337
# Collections, key is used to access in the strapi.collections
# template variable
collections:
# Example for a "posts" collection
posts:
# Collection name (optional). Used to construct the url requested. Example: type `foo` would generate the following url `http://localhost:1337/foo`.
type: post
# Permalink used to generate the output files (eg. /posts/:id).
permalink: /posts/:slug/