SAP Fiori Launchpad自定义应用程序错误:无法实例化对象:缺少“新”

时间:2017-11-29 11:24:11

标签: javascript sapui5

尝试在fiori启动板中启动我们自定义开发的SAPUI5应用程序后,收到以下错误消息:

Error

LPD_CUST设置:

LPD_CUST_settings

Component.js

sap.ui.define([
  "sap/ui/core/UIComponent"
 ], function (UIComponent) {
  "use strict";
 return UIComponent.extend("***.***.***.Component", {
 metadata : {
   manifest: "json"
 },

init : function () {
  UIComponent.prototype.init.apply(this, arguments);
 }
 });
});

目标映射:

Target Mapping

语义对象:

Semantiv对象YCEI_BPUPLOAD_SEM存在于Transaction / n / UI2 / SEMOBJ中

该应用程序通过index.html作为独立应用程序启动。但是,如果我们尝试在SAP Fiori Launchpad上启动它,则会显示错误消息。

我们还尝试了下面的component.js,我们在LPD_CUST交易中输入了附加信息属性的值,但我们收到了同样的错误。

jQuery.sap.declare("***.***.***.Component");
    sap.ui.core.UIComponent.extend("***.***.***", {
    createContent : function() {
   // create root view
   this.view = sap.ui.view({
   id : "app",
   viewName : "***.***.***.view.App",
   type : sap.ui.core.mvc.ViewType.XML,
   viewData : { component : this }
  });
return this.view;
}
});

(***是内部组件/路径)

所有提示都表示赞赏。

此致

2 个答案:

答案 0 :(得分:0)

错误消息将您链接到应用程序的控制器。请确保正确实例化对象。也许实例化OData模型存在问题。检查您是否使用“新”。请参阅以下语法:

https://ui5.sap.com/#/topic/6c47b2b39db9404582994070ec3d57a2.html

答案 1 :(得分:0)

你需要使用" new"实例化对象时,例如在第二个选项上:

   this.view = new sap.ui.view({
       id : "app",
       viewName : "***.***.***.view.App",
       type : sap.ui.core.mvc.ViewType.XML,
       viewData : { component : this }
  });

我不认为这是你问题的答案,但我认为这是一个错误,也许它可以帮助你。