gpt4 book ai didi

javascript - 每次有人连接到服务器时增加计数器

转载 作者:行者123 更新时间:2023-11-30 15:38:50 25 4
gpt4 key购买 nike

伙计们,我有以下代码,它应该在每次有人连接到服务器并在控制台中发布消息时增加一个计数器,但它只增加一次,你能帮我吗?

'use strict'
//Require express
var express=require('express');
//Trigger express
var app=express();
var counter=0;
//Set up the route URL
app.get('/', function(req, res){
res.send("<h1>You have connected</h1>");
});

//set up the port
app.listen(3000,function(){

//increment counter

counter+=1;
console.log("you have connected " + counter + " times");
})

最佳答案

您需要将计数器移到响应内部。

app.get('/', function(req, res){
counter++;
res.send("<h1>You have connected "+counter+ " times </h1>");
});

这样,无论何时加载页面,它都会递增,而不仅仅是当您启动它并开始使用 app.listen() 进行监听时。

关于javascript - 每次有人连接到服务器时增加计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41131125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com