我正在使用Angular 7.1开发一个Web应用程序。我对该框架没有任何经验。
该项目已经具有本地化(两种语言)。我想在我的<head>
中添加元标记,并在HTML lang属性中添加合适的标记。但是所有逻辑和所有组件都始于<app-root></app-root>
。 index.html没有.js或.ts文件。我不知道如何访问translateService
来获取当前语言。
我当然搜索了这个问题。但是,没有解决方案在我的项目中起作用或无法实施。就像他们使用的旧版Angular具有其他结构一样。有时他们会提供JS代码,却没有说明应该在哪里。
index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My app</title>
<base href="/">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
</body>
</html>
index.html在我的应用程序的根目录中。
答案 0 :(得分:0)
我认为,首先,您实际上没有在HTML文件中链接Angular Framework或任何其他外部Javascript文件。
因此,您的标签<app-root></app-root>
将不起作用。
除此之外,我认为您需要提供有关问题的更多信息,因为在您尝试访问的代码中的任何地方都看不到translateService
。