我有一个包含两个值的 url,一个关键字和一个位置名称。关键字位于“/r/”之后,位置位于“/l/”之后。
例如: localhost:3000/search/r/keyword/l/location
只获取'/r/'(关键字)之后的值和'/l/'(位置)之后的值;我正在做以下正则表达式:
var cutResult = window.location.href.match(/\br\/\b(\b[^\/]+\b)/gi);
var cutLocation = window.location.href.match(/\b\/l\/\b(\b[^\/]+\b)/gi);
这可以解决问题,但是,React 返回以下消息:
不必要的转义字符:/ no-useless-escape
是什么导致错误?