使用 SAPUI5 库将 OData 转换为 JSON 格式
这可以通过多种方式来完成。一种常见的方法是在 URL 中传递用户名/密码。
$.ajax({ url : "http://user:password@url/SERVICE?$format=json", type: "GET", //or POST? dataType: "jsonp", success: function(){alert("ok")}, error: function(){alert("error")} })
广告