javascript - Reactjs, How to compare props.location.pathname to a string? - Stack Overflow

In my router, I need to do the following:if (props.location.pathname !== 'confirm') { redi

In my router, I need to do the following:

if (props.location.pathname !== '/confirm') {
    // redirect to /confirm to force the user to confirm their email
}

The if statement is not acting as expected.

If I output:

console.log(props.location.pathname)

I get in the console.

/confirm

However, props.location.pathname with the value of '/confirm' is not being seen as the same as /confirm

What am I doing wrong?

In my router, I need to do the following:

if (props.location.pathname !== '/confirm') {
    // redirect to /confirm to force the user to confirm their email
}

The if statement is not acting as expected.

If I output:

console.log(props.location.pathname)

I get in the console.

/confirm

However, props.location.pathname with the value of '/confirm' is not being seen as the same as /confirm

What am I doing wrong?

Share Improve this question asked Jul 4, 2017 at 17:11 AnnaSmAnnaSm 2,3006 gold badges24 silver badges35 bronze badges 3
  • 2 What is typeof props.location.pathname ? Strict parison a !== b is true if types are different. – Yury Tarabanko Commented Jul 4, 2017 at 17:13
  • typeof props.location.pathname returns string – AnnaSm Commented Jul 4, 2017 at 17:32
  • 1 Then it should be ok to use props.location.pathname !== '/confirm'. Make sure you don't have some space or special character in "/confirm". – Yury Tarabanko Commented Jul 4, 2017 at 17:35
Add a ment  | 

2 Answers 2

Reset to default 4

To pare two strings in React.js, you can simply use triple-equals (or ===) as below:

if (stringTemp === 'desired string'){
      console.log('Equal');
    }

type of both the operands should be same while using == for parision.Make sure both are of string type or change if to

if (props.location.pathname != '/confirm') {
// redirect to /confirm to force the user to confirm their email

}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1741656667a4358994.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信