Gatsby.js 未来的网页10:GraphQL Filter & Sort

栏目: 前端 · 发布时间: 6年前

内容简介:上一篇中,我们完成了一个简单的Index页面。今天,我们再加一些功能:1)在文章中设定是否为草稿,若是,则index不显示,这可以透过GraphQL的filter实现;2)为文章加入日期,让index可以按日期以倒序排列文章,这可以透过GraphQL的sort实现。将连结列表改为ul显示

Gatsby.js 未来的网页10:GraphQL Filter & Sort

上一篇中,我们完成了一个简单的Index页面。今天,我们再加一些功能:1)在文章中设定是否为草稿,若是,则index不显示,这可以透过GraphQL的filter实现;2)为文章加入日期,让index可以按日期以倒序排列文章,这可以透过GraphQL的sort实现。

视频教学连结

Index列表

将连结列表改为ul显示

<ul>
{data.allMarkdownRemark.edges.map(post => (
  <li>
    <Link
      key={post.node.id} 
      to={post.node.frontmatter.path}>
      {post.node.frontmatter.title}
    </Link>
  </li>
))}
</ul>

增加frontmatter

为两篇blog文章加入新frontmatter:

---
path: '/blog-post-1'
title: 'My post'
draft: false
date: "2018-10-22"
---

GraphQL的filter和sort

修改首页的index.js当中的GraphQL查询,先加入前面新增的frontmatter(draft和date)。再在limit后之后加入filter和sort:

export const pageQuery = graphql`
  query IndexQuery {  
    allMarkdownRemark(
      limit: 10 
      filter: { frontmatter: { draft: { eq: false } } }
      sort: {fields: frontmatter___date order: DESC}
    ) {
      edges {
        node {
          id
          frontmatter {
            title
            path
            draft
            date
          }
        }
      }
    }
  }
`

filter可以用条件限制查询内容。

sort可以根据fields加order进行顺序或倒序。

繁体


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Programming in Haskell

Programming in Haskell

Graham Hutton / Cambridge University Press / 2007-1-18 / GBP 34.99

Haskell is one of the leading languages for teaching functional programming, enabling students to write simpler and cleaner code, and to learn how to structure and reason about programs. This introduc......一起来看看 《Programming in Haskell》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

URL 编码/解码
URL 编码/解码

URL 编码/解码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试