标签: javascript templates internationalization translation
所有javascript翻译系统都有某种按语言分类的键值数组。然后在html中,您可以调用翻译函数执行类似$.i18n( 'message_hello' );的操作或使用<p>{{message_hello}}</p>之类的模板系统。
$.i18n( 'message_hello' );
<p>{{message_hello}}</p>
问题是,如果您点击共享按钮时像Google Bot或Facebook解析器这样的网络爬虫,那些就不会执行JS,因此他们将解析未经修改的DOM版本。
你如何处理这个问题?