Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的意思是,如何将变量传递给顶层 html,而不是模板。谢谢
<head> <title>{{app_name}}</title> </head>
似乎没有将变量传递到 head 部分的明显方法。您不能像在正文中那样在其中使用模板。
但是,您可以根据需要从 JavaScript 设置标题。您可以在客户端代码中执行此操作,如下所示:
document.title = "My Page Title";
缺点是在 JavaScript 加载之前不会设置标题。