在Angular4中,我想检查当前的URL,如果它等于“/login”,我需要提交一个特定的表单。代码如下:

 let responseString=this.router.url;
 console.log(responseString);
 if (responseString.match("/login")==null)
   this.submitForm();

以上代码并非在所有情况下都提交表单。我想如果情况有问题。
有线索吗?

最佳答案

对于简单的字符串到字符串相等,可以使用===运算符。

09-16 18:11