ui5 获取当前client的2种方法

1、使用ushell类

sap.ushell.Container.getLogonSystem().getClient();

2、 使用userset

modelli

			var uR = $.ajax({
				url : "/sap/bc/ui2/start_up",
				async : false
			});

			if (uR.status === 200) {
				localData.userSet = uR.responseJSON;
			}

然后在需要调用的地方

this._client = this.getModel().oData.userSet.client;

posted @ 2022-11-07 19:38  linhuang  阅读(6)  评论(0编辑  收藏  举报  来源