我有几个如下所示的 URL:
{{domainID}}/action/{{userId}}/anotherAction
后一个 URL 指向:
http://localhost/viewA/{{domainID}}/action/{{userId}}/anotherAction
但是,如果我尝试通过 iframe 加载,则里面的链接viewA
而不是指向:viewB
viewA
http://localhost/viewA/{{domainID}}/action/{{userId}}/anotherAction
它将指向:
http://localhost/viewB/{{domainID}}/action/{{userId}}/anotherAction
如果跟随后者,用户将最终进入 404 页面。
我的问题是:
反正有没有在树枝中以这种方式构建的 url 的绝对路径?
编辑
路由定义为:
@Route("/domain/details/{domainId}", name="domain_detailed_view")
我试图以这种方式获取绝对路径:
{{ url({{domainID}}/action/{{userId}}/anotherAction) }}
但我收到此错误:
哈希键必须是带引号的字符串、数字、名称或括号中的表达式