nuxt探活接口

Posted cuter、

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nuxt探活接口相关的知识,希望对你有一定的参考价值。

测试人员需要探活接口,用于检测网站

serverMiddleWare/ping.js下
export default function (req, res, next) 
    res.writeHead(200, 
      "content-type": "text/plain; charset=utf-8"
    );
    res.end("pong");
      
nuxt.config.js下
  serverMiddleware: [
    
      path:'/ping',
      handler:'~/serverMiddleware/ping.js'
    
  ],

以上是关于nuxt探活接口的主要内容,如果未能解决你的问题,请参考以下文章

nuxt探活接口

nuxt探活接口

在Nuxt.js组件中获取异步数据

技术分享 | 探究 Druid 连接池探活方式的实现

服务探活的五种方式

nuxt.js设置代理接口