热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

Translationdoesnotshownon-ASCIIcharacterscorrectly

如何解决《Translationdoesnotshownon-ASCIIcharacterscorrectly》经验,为你挑选了1个好方法。

I have a SAPUI5 application. The translated text is shown wrongly in a dialog, while the translation is shown correct in the launchpad. Please see the following picture:

While the translation file is loaded for German language, it does not show [ÖÄÜß] correctly in the dialog. However it doesshows ö correctly in the launchpad page.

How can I solve it?



1> Boghyon Hoff..:

尝试在工具配置文件中设置/resources/configuration/propertiesFileSourceEncodingUTF-8(通常为ui5.yaml)。

    ui5.yaml

    resources:
      configuration:
        propertiesFileSourceEncoding: UTF-8
    

    并在package.json

    "devDependencies": {
      "@ui5/cli": "",
      ...
    },
    

    重新生成并再次部署该应用程序。


关于 propertiesFileSourceEncoding

此选项指定*.properties项目文件的源编码。这些文件将以给定的编码读取,所有非ASCII字符将替换为相应的unicode转义序列。(文件)


推荐阅读
author-avatar
lailin2025
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有