NotFoundError: Not Found

Object.throw

/home/ubuntu/hanpress/node_modules/koa/lib/context.js:97:11

       * Note: `status` should only be passed as the first parameter.
   *
   * @param {String|Number|Error} err, msg or status
   * @param {String|Number|Error} [err, msg or status]
   * @param {Object} [props]
   * @api public
   */

  throw(...args) {
    throw createError(...args);
  },

  /**
   * Default error handling.
   *
   * @param {Error} err
   * @api private
   */

  onerror(err) {
                

module.exports.index

/home/ubuntu/hanpress/web/plugins/topic/controllers/home.js:66:18

              trackId: _id,
          "articles": articles,
          "data": data,
          "title": data.title,
          "view": data.view,
          comments
        });
        return this.display(`topic.html`);
      } else {
        ctx.throw(404);
      }
    } else {
      ctx.throw(404);
    }
  }
  async more(ctx) {
    let page = ctx.query.page || 1;
    let pagesize = ctx.query.pagesize || 10;

    let postModel = dan.DB('content');
                

::

    [native code]
                

process._tickCallback

internal/process/next_tick.js:188:7

    [native code]