在Stradi的管理ui中创建模型时,我有几个独特的字段。

我意识到当在api调用期间未提供field时,它将给出错误消息500而不是正确的错误消息。

我确实理解为什么会出错,因为我可以在后端控制台中看到日志,并且已经扫描了诸如https://github.com/strapi/strapi/issues/1189https://github.com/strapi/strapi/issues/1175之类的帖子

阅读这些问题后,我相信最好的方法是转到/api/controllers并创建一个诸如create的函数以覆盖所提供的函数,但出现错误Model.create is not a function

我在控制器中没有做太多事情,因此代码很苗条。

module.exports = {
    /* Strapi has default create function
     * But because of the error message it provide is vague, will have to customize the controller */
    create: async (ctx) => {
        try {
            console.log(ctx.request.body, 'ctx');
            const article = await Article.create(ctx.request.body);
            console.log(article, 'article');
        } catch (e) {
            console.log(e, 'error');
        }
    }
};


我已阅读问题单https://github.com/strapi/strapi/issues/1505
但是我正在使用
绑架:3.0.0-beta.17.5
节点:v10.17.0
npm:6.11.3
db:sqlite3(本地)PostgreSQL(暂存)

有人知道我做错了吗?

在此先感谢您的帮助和建议。

最佳答案

我建议您在此处检查默认控制器功能https://strapi.io/documentation/3.0.0-beta.x/concepts/controllers.html#extending-a-model-controller

您将看到如何使用服务功能来创建条目。

我不建议您使用Model Global变量。

const { parseMultipartData, sanitizeEntity } = require('strapi-utils');

module.exports = {
  /**
   * Create a record.
   *
   * @return {Object}
   */

  async create(ctx) {
    let entity;
    if (ctx.is('multipart')) {
      const { data, files } = parseMultipartData(ctx);
      entity = await strapi.services.restaurant.create(data, { files });
    } else {
      entity = await strapi.services.restaurant.create(ctx.request.body);
    }
    return sanitizeEntity(entity, { model: strapi.models.restaurant });
  },
};

09-26 17:31