如何在emberjs中使用海市蜃楼假数据进行分页?

时间:2016-05-10 06:19:29

标签: javascript ember.js ember-data ember-cli-mirage

我正在使用海市蜃楼创建虚假数据。

场景/ default.js

export default function(server) {
  server.createList('product', 48);
  server.loadFixtures();
}

上面我正在创建48个产品,而我正在调用控制器

this.store.query('product', {
                filter: {
                    limit: 10,
                    offset: 0
                }
            }).then((result) => {
                console.log(result);
            });

并在 mirage / config.js

this.get('/products', function(db) {
    let products = db.products;
    return {
      data: products.map(attrs => ({
        type: 'product',
        id: attrs.id,
        attributes: attrs
      }))
    };
  });

现在我的问题是,如何每页加载10个产品?我发送过滤器10作为页面大小,偏移量表示页码。

应该对config.js进行哪些更改以仅加载有限的产品?

2 个答案:

答案 0 :(得分:3)

在mirage / config.js的处理程序中:

this.get('/products', function(db) {
    let images = db.images;
    return {
      data: images.map(attrs => ({
        type: 'product',
        id: attrs.id,
        attributes: attrs
      }))
    };
  });

您可以像这样访问请求对象:

this.get('/products', function(db, request) {
    let images = db.images;
    //use request to limit images here
    return {
      data: images.map(attrs => ({
        type: 'product',
        id: attrs.id,
        attributes: attrs
      }))
    };
  });

查看this twiddle的完整示例。 这个旋律有以下几点:

  this.get('tasks',function(schema, request){
    let qp = request.queryParams
    let page = parseInt(qp.page)
    let limit = parseInt(qp.limit)
    let start = page * limit
    let end = start + limit
    let filtered = tasks.slice(start,end)
    return {
      data: filtered
    }
  })

您只需根据自己的需要调整它:

  this.get('products',function(db, request){
    let qp = request.queryParams
    let offset = parseInt(qp.offset)
    let limit = parseInt(qp.limit)
    let start = offset * limit
    let end = start + limit
    let images = db.images.slice(start,end)
    return {
      data: images.map(attrs => ({
        type: 'product',
        id: attrs.id,
        attributes: attrs
      }))
    }
  })

答案 1 :(得分:1)

使用todos的示例,您可以使其适应您自己的用例。

    // Fetch all todos
    this.get("/todos", (schema, request) => {
        const {queryParams: { pageOffset, pageSize }} = request
        
        const todos = schema.db.todos;
    
        if (Number(pageSize)) {
            const start = Number(pageSize) * Number(pageOffset)
            const end = start + Number(pageSize)
            const page = todos.slice(start, end)
        
            return {
                items: page,
                nextPage: todos.length > end ? Number(pageOffset) + 1 : undefined,
            }
        }
        return todos
    });