var express = require('express'); var app = express();

var colors = ['red', 'yellow', 'green', 'blue']; var currentColorIndex = 0;

app.get('/color.html', function(req, res) { var color = colors[currentColorIndex]; var html = '' + color + '<h1 style='color:' + color + ';'>' + color + ''; res.send(html); currentColorIndex = (currentColorIndex + 1) % colors.length; });

app.listen(3000, function() { console.log('Server listening on port 3000'); });


原文地址: https://www.cveoy.top/t/topic/mreE 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录