Home > Backend Development > PHP Tutorial > 如何限制用户使用Fiddle同时提交多个请求

如何限制用户使用Fiddle同时提交多个请求

WBOY
Release: 2016-06-06 20:15:29
Original
1160 people have browsed it

比如我们有一个ajax提交的签到,当用户把请求提交时, php代码大致时判断用户今日是否已经签到,如果没有签到,则进行签到,增加金额。
但是有个别用户通过Fiddle刷签到,可以签到多次。请问如何才可解决呢

我已经做了token验证、在nginx配置中limit_req_zone等操作,但是不起作用

回复内容:

比如我们有一个ajax提交的签到,当用户把请求提交时, php代码大致时判断用户今日是否已经签到,如果没有签到,则进行签到,增加金额。
但是有个别用户通过Fiddle刷签到,可以签到多次。请问如何才可解决呢

我已经做了token验证、在nginx配置中limit_req_zone等操作,但是不起作用

数据库事务

begin;
签到数据写入
判断if(数据库已写入签到数据) select id from table_name where *
rollback
else
commit

return 签到成功

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template