Angular里routerLink指令实际url的生成逻辑
- 2020 年 12 月 7 日
- AI
My Analysis
I set a breakpoint in function generateUrlPart in file Spartacus-core.js:

For every path stored in routeConfig.paths, this function evaluates if route parameter passed by developers in <a> can match ALL.

Since I only specify “code” in my custom component template html,

the evaulation will fail of course, as no counterpart exists for another parameter “name”:

solution
After I add the other necessary route parameter nameForUrl: ‘Jerry’ in my html:

this time function generateUrlPart can return the expected result:

This time route works since the static url is generated successfully and contained in the rendered html.
