Explanation requested for fixedEncodeURIComponent

2019-09-03 20:27发布

I'm wondering if anyone can explain this function to me? I've tested it and it works like a dream but I don't understand how!

It's from the MDN reference here: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent

function fixedEncodeURIComponent (str) {
  return encodeURIComponent(str).replace(/[!'()]/g, escape).replace(/\*/g, "%2A");
}

I understand replace as the match followed by the replacement, what I am struggling with is the escape reference and the secondary replacement which results in actual encode values replacing characters e.g. ( = %28 and )= %29.

1条回答
叼着烟拽天下
2楼-- · 2019-09-03 20:55

The reference to "escape" is just a reference to the global function of that name. If the second argument to .replace() is a function, then JavaScript passes the matched string to the function and replaces it with whatever the function returns.

Try typing

escape("!")

in your browser's console.

查看更多
登录 后发表回答