search

Home  >  Q&A  >  body text

javascript - When registering, the same user registers multiple times, and multiple pieces of the same data appear in the database. The background has been verified, and the front-end js also limits submission once every two seconds, but multiple pieces of data still appear.

When registering, the same user registers multiple times, and multiple pieces of the same data appear in the database. The background has been verified, and the front-end js also limits submission once every two seconds, but multiple pieces of data still appear

世界只因有你世界只因有你2834 days ago1029

reply all(8)I'll reply

  • 習慣沉默

    習慣沉默2017-06-30 09:54:16

    The front-end can set the registration button to be clickable when entering the page. When clicking to send a registration request, the registration button is first set to be non-clickable. When the request comes back and the registration fails, the button is set to be clickable.

    reply
    0
  • 伊谢尔伦

    伊谢尔伦2017-06-30 09:54:16

    Use unique index as a restriction in the database

    reply
    0
  • 淡淡烟草味

    淡淡烟草味2017-06-30 09:54:16

    I don’t know whether you use debouce or throttle to limit submission to two seconds

    A better approach is to click Register to disable the button, wait for the request to return, and then enable the button in the callback function. Remember to enable the Register button in the callback that reports an error

    Backend database fields must also be uniquely indexed

    reply
    0
  • 天蓬老师

    天蓬老师2017-06-30 09:54:16

    Server-side verification requires uniqueness judgment; disable clicks after clicking on the front-end button, wait for the server to return and unblock clicks, or implement it through timeout

    reply
    0
  • 学习ing

    学习ing2017-06-30 09:54:16

    Registration requires unique verification

    reply
    0
  • 给我你的怀抱

    给我你的怀抱2017-06-30 09:54:16

    Database plus username primary key unique verification

    reply
    0
  • 三叔

    三叔2017-06-30 09:54:16

    Although the solution of disabling buttons on the front end is also necessary, it only prevents ordinary users from clicking multiple times and cannot prevent non-browser 'users'
    No matter how many repeated requests the server accepts, it must be processed by the backend
    Purpose The same user can only register once, refer to other answers, primary key

    reply
    0
  • 世界只因有你

    世界只因有你2017-06-30 09:54:16

    Refer to my article How to prevent clients from sending repeated requests in web projects

    reply
    0
  • Cancelreply