Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果已经存在手机号码,是否有任何模式,则必须在表单验证中显示错误消息。
如果数据库中存在现有的手机号码,那么您应该使用 Ajax 向后端发出 API 请求以避免页面重新加载。您应该在请求中将手机号码作为参数发送。
在后端,您需要在数据库中检查该号码是否已经存在,并且根据您的发现,您应该返回适当的响应。
在前端,您需要检查从 API 返回的响应并根据它做出适当的决定,但所有通过数据库的验证都应该在后端/服务器端完成。