显示用户数量

发布于 2024-11-16 19:53:48 字数 114 浏览 2 评论 0原文

有没有办法显示已注册网络的用户总数?我刚刚在此处(位于右侧页面底部)遇到了一个示例,想知道他们是如何做到的...

Is there a way to show the total number of users of a network who have signed up? I just ran into an example here (at the bottom of the page on the right) and wonder how they do it...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

深陷 2024-11-23 19:53:48

信息还不够。但这是黑暗中的一个镜头:

select count(*) from users;

Not nearly enough info. But here's a shot in the dark:

select count(*) from users;
找回味觉 2024-11-23 19:53:48

当用户注册时,他们会在数据库中创建一个实体。它所做的只是计算数据库中的用户数量并显示该数字。简单易行。

When a user signs up they create an entity in a database. All it's doing is counting the number of users in the database and displaying that number. Easy peasy.

街道布景 2024-11-23 19:53:48

看看他们使用 Javascript 的代码,但没有使用任何 ajax 或其他东西,计数器似乎是使用这个更新的......

this.value + Math.round(Math.random() * 3)

太棒了:D

Looking at the code they use Javascript, but not any ajax or something, the counter seems to be updated using this...

this.value + Math.round(Math.random() * 3)

amazing :D

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文