要在Angular中摆脱URL中的大括号,您可以使用encodeURI()
函数将大括号进行编码。以下是一个示例代码:
import { Component } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-example',
template: `
Example Component
`,
})
export class ExampleComponent {
constructor(private route: ActivatedRoute) {
this.route.url.subscribe((url) => {
const encodedUrl = encodeURI(url.join('/'));
console.log(encodedUrl);
});
}
}
在上面的代码中,我们使用了ActivatedRoute
来订阅URL的变化。在每次URL变化时,我们将URL转换为字符串,并使用encodeURI()
函数对其进行编码。你可以在console.log()
中看到编码后的URL。
请注意,encodeURI()
函数仅对URL中的特殊字符进行编码,而不会对整个URL进行编码。如果你需要对整个URL进行编码,可以使用encodeURIComponent()
函数。