首页 > 解决方案 > 如何将所有strapi UI消息错误重定向到控制台?

问题描述

我正在使用Strapi v3.0.0-beta.18.7

Strapi 在 UI 中抛出了很多数据库错误,但是视觉上里面有错误的 UI 块太小了,无法读取错误的全文。

如何 将错误消息重定向到文件/控制台到列表有机会阅读所有错误文本?

标签: strapi

解决方案


我建议使用自定义中间件来管理您的需求。

这是创建中间件的文档 - https://strapi.io/documentation/3.0.0-beta.x/concepts/middlewares.html

第一步:创建中间件

路径——middlewares/log/index.js

module.exports = strapi => {
  return {
    initialize() {
      strapi.app.use(async (ctx, next) => {
        await next();

        const status = ctx.status;

        if (status < 200 || status >= 300) {
          console.log(ctx.body);
        }
      });
    },
  };
};

第 2 步:启用中间件

路径——config/environments/development/middleware.json

{
  "log": {
    "enabled": true
  }
}

第三步:按正确的顺序设置中间件

路径——config/middleware.json

{
  "timeout": 100,
  "load": {
    "before": [
      "log",
      "responseTime",
      "logger",
      "cors",
      "responses",
      "gzip"
    ],
    "order": [
      "Define the middlewares' load order by putting their name in this array is the right order"
    ],
    "after": [
      "parser",
      "router"
    ]
  }
}

推荐阅读