Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
440 views
in Technique[技术] by (71.8m points)

meteor - When using a regex in iron router, how to access the match?

Rather than having five different routes, I am trying to combined five different paths into a single function, but I still need to know which path it matched. So if I set up my route using a regex:

Router.route(/^/(accounts)|(contacts)|(forecasts)|(analytics)|(activities)/, function() {
    // which one did it match?
    console.log("matched "+this.params) //this returns an array of five params
}

how do I refer to the matched parameter inside the function?

this.params returns an array of five params with four of them undefined and the other matching, but which one is defined depends on what matched so this isn't very helpful.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I was able to use this.params after all by rewriting the regex as follows:

Router.route(/^/(accounts|contacts|forecasts|analytics|activities)/, function() {
    console.log('matched: '+this.params[0]);
}

Not sure if this is the best way to refer to a regex match tho.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...