我正在尝试添加另一个用户,我正在尝试使用这个在互联网上显示的代码。
所以我尝试了下面的这个例子,它工作得很好,但是我如何添加另一个用户,比如说一个客人呢?
是可能的吗?用条件句吗?
我只是想了解更多关于js的知识,以及如何解决这种简单的事情。
methods: {
login() {
if(this.input.username == "admin1" && this.input.password == "pass1") {
this.$store.commit("setAuthentication", true);
this.$router.replace({ name: "secure" });
} else {
console.log("The username and / or password is incorrect");
}
}
}
你可以使用下面的代码:
methods: {
login() {
if(this.input.username == "admin1" && this.input.password == "pass1") {
this.$store.commit("setAuthentication", true);
this.$router.replace({ name: "secure" });
} else if (this.input.username == "guest" && this.input.password == "guest1") {
// block of code to be executed if the condition1 is false and condition2 is true
}else {
console.log("The username and / or password is incorrect");
}
}
}