1
我已經嘗試了各種方法,但我沒有得到這個,任何人都可以給這個適當的解決方案嗎?其實,我知道如何使用AJAX調用來調用Web服務,但每當我嘗試下面通過我的網址,它給了我下面的錯誤:如何在SAPUI5中調用php webservice url?
onInit: function() {
$.ajax({
url:"http://SERVER_IP/SAP_DEMO/register.php",
type: "POST",
datatype:"json",
accepts:{ text:"application/json" },
success: function(oResData){
if(!oResData) {
sap.m.MessageToast.show("No Success");
}
else { sap.m.MessageToast.show(" Success"); }
},
error: function() { sap.m.MessageToast.show("unsuccessful json call"); }
});
var oModel=new sap.ui.model.json.JSONModel();
sap.ui.getCore().setModel(oModel);
}
上面的代碼給了我這個錯誤:
error: Fiori Architectural guidelines: ESLint(sap-no-hardcoded-url): Hardcoded (non relative) url found.