错误无法在SAPUI5应用程序中加载资源

从错误消息中可以很明显地看出:未找到VisitorData.view.js,因此您必须检查该视图是否确实存在,并且该视图上没有权限问题。

尝试检查此内容以查看已部署服务的列表-http: //hanaservername.com:4000/ui_test/ui5_test/WebContent/resources/

您必须在web.xml中添加以下内容-

<context-param>
   <param-name>com.sap.ui5.resource.DEV_MODE</param-name>
   <param-value>true</param-value>
</context-param>