从Spring绑定数据SAPUI5(JSON输出)

2020-09-27 17:42发布

点击此处---> 群内免费提供SAP练习系统(在群公告中)加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)大家好, 我已经用Spring...

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


大家好,

我已经用Spring创建了服务(JSON输出),我想在SAPUI5中使用。 我想查看绑定。 示例:我有一个网址为 http://localhost:8080/customer_data 的服务:

 [{{id:" 1",名称:" aaa"},{id:" 2",名称:" bbb"},{id:" 3",名称:" ccc"}] 

我在sapui5中创建模型JSON:

 var model = new JSONModel(" http://localhost:8080/customer_data");
 this.getView()。setModel(model); 

我已经成功完成了这一步。 但是我只希望使用" customer_data "来加载模型,因为也许当我要部署时,我可能不会将此代码放置在 localhost 中,也许不在服务器中。 如何解决这个问题? 所以,我想要:

 var model = new JSONModel(" customer_data"); 

如果我使用代码" new JSONModel(" <​​a rel="nofollow" href="http://localhost:8080/customer_data"> http://localhost:8080/customer_data ");" , 有什么问题吗? 谢谢。

此致

鲍比

4条回答
南山jay
2020-09-27 18:41

嗨,

是的,我知道。 但是我在加载模型时遇到问题,我只想用单独的URL加载模型。 例如:

 var oModel = new JSONModel(" customer_data"); 

当我在上面编写代码时,我从url:localhost:8080/springproject/customer_data创建了模型(此url为真,在一个问题中是错误的,我忘记了输入完整的url)。 那么,如何解决这个问题呢? 如何使用javascript在tomcat 7中获取IP和端口? 我不想直接使用url:localhost:8080/springproject/customer_data来创建模型。

谢谢。

此致

Bobby

一周热门 更多>