如何在chrome中强制出现504
错误?
我们有一个node应用程序,偶尔会从中得到一个504
错误,我想对504
错误进行一些错误处理。
最佳答案
将其复制到名为server.js的文件中,然后运行node server.js
。如果您访问http://localhost:8080
您将被抛出504错误。
var http = require('http');
var fs = require('fs');
http.createServer(function (req, res) {
console.log("Sending 504 error to client");
res.writeHead(504, {'Content-Type': 'text/plain'});
res.end();
}).listen(8080);
console.log("Server started on port 8080");