我可以看到有关如何使用react-helmet进行更改的示例列表
<html lang='en|es|ti|'>
下面我有public / index.html,请建议我按步骤进行操作,以采用React-Helmet。由于index.html是静态html,位于react root之外,所以我有点不对齐。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charSet='utf-8'></meta>
<meta http-equiv='x-ua-compatible' content='ie=edge'></meta>
<meta name='format-detection' content='telephone=no'></meta>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
如果我更改
<html lang="es">
动态地将我的页面翻译成西班牙语吗?有适当的方法吗?