密码保护小程序
有没有办法用密码保护小程序?
Is there a way to password a protect an applet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法用密码保护小程序?
Is there a way to password a protect an applet?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
也许我想得太简单了。但是...
如果您想要多个用户/密码
只需创建一个包含用户表的数据库,并通过数据库连接检查它们......为您的小程序创建一个“锁定状态”,直到您验证某人的身份并解锁之后。这可以很简单,
*只需绘制此屏幕和/或使用此功能,直到用户名和密码匹配”
如果它们匹配,我会给您更多信息...这可能是一个简单的 if else 构造,
如果您有足够的一个用户(简单但不是真正的方法)
只需将一些值硬编码到您的小程序中即可检查用户名和密码是否匹配。
Maybe I think too simple. But...
If you want multiple users/passwords
just make a DB that has a table for your users and check them with a database connection ....make a "lock-state" for your applet until you have verified someones identity and after that unlock. That can be as simple as
*just draw this screen and/or use this functionality until username and password matches"
if they match i'll give you more to see...this could be a simple if else construction
if you have enough with one user (easy but not really the way to go)
Just put some values hardcoded in your applet to check if username and password match.