我想动态更新我的Web应用程序的标题,并在其后面附加用户名。我知道这可以使用jquery来完成,但想知道是否有任何实现它的方法。
我在app / index.html中的标题看起来像这样
<title>XYZ.com</title>
但我想让它看起来像
<title>XYZ.com - User name</title>
用户名来自ember模型User.name
答案 0 :(得分:2)
有一个Ember CLI插件。
使用'ember-cli-document-title'来管理您的文档标题。
自述文件具有出色的使用说明。
答案 1 :(得分:0)
在应用程序控制器中声明一个变量。
webName: null
您需要更改Web应用程序名称的位置u修改应用程序控制器的控制器变量。
this.controllerFor('application').set('webName', yourwebappname);
答案 2 :(得分:-2)
document.title = "test";
希望它会帮助你