1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【SAPUI5】ライブラリのmessagebundleをアプリケーションで使う方法

Last updated at Posted at 2020-02-05

はじめに

【SAPUI5】i18nをライブラリ化するの記事で、ライブラリのi18nファイルを別のアプリに取り込む方法を紹介しました。もっといい方法があることがわかったので書きたいと思います。

messagebundleとは

ライブラリ単位で持っている、翻訳可能なテキストのファイルです。書き方はi18nと同じです。
image.png

messagebundleのテキストをアプリケーションから呼ぶには

コントローラーから呼ぶ方法

コントローラーの中だけで使いたい場合は、この方法が簡単です。

sap.ui.getCore().getLibraryResourceBundle("ライブラリ名(フルパス)").getText("テキストID")
参考:APIリファレンス

		onSayHello: function () {
			//ライブラリからテキストを取得
			var sText = sap.ui.getCore().getLibraryResourceBundle("demo.library.zdemolibrary").getText("SAY_HELLO");
			MessageBox.alert(sText);
		}

結果
image.png

ビューから呼ぶ方法

ビューから呼ぶ方法は2つ考えられます。

  1. 【SAPUI5】i18nをライブラリ化すると同じように、アプリケーション本体のi18nとマージする
  2. 独立したリソースモデルを作る

####アプリケーション本体のi18nとマージする
Component.jsで以下のように書きます。

			//ライブラリのリソースを取り込み
			var oBundle = sap.ui.getCore().getLibraryResourceBundle("demo.library.zdemolibrary");
			this.getModel("i18n").enhance(oBundle);

ビューは以下のようになります。

<Text text="{i18n>SAY_HELLO}"/>	

独立したリソースモデルを作る

manifest.jsonにリソースモデルを追加します。以下では、"msg"という名前で追加しています。
こうすると、アプリケーションのi18nとライブラリで同じテキストIDを使っても問題ありません。

		"models": {
			"i18n": {
				"type": "sap.ui.model.resource.ResourceModel",
				"settings": {
					"bundleName": "demo.Train_17_UseLibraryText.i18n.i18n"
				}
			},
			"msg": {
				"type": "sap.ui.model.resource.ResourceModel",
				"settings": {
					"bundleName": "demo.library.zdemolibrary.messagebundle"
				}				
			}

ビューは以下のようになります。

<Text text="{msg>SAY_HELLO}"/>
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?