cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with Tiny World part9 : Application life cycle

Former Member
0 Kudos

I am following the Tiny world Tutorial had issue on this part of the tutorial : https://blogs.sap.com/2016/03/29/developing-with-xs-advanced-application-life-cycle/

I am having a problem adding the country.The response is always: {“readyState”:0,”status”:0,”statusText”:”error”}

and in the console I get this message:

” Response to preflight request doesn’t pass access control check: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. ”

Also can you specifiy what url to use in the ajax url ?

Accepted Solutions (1)

Accepted Solutions (1)

former_member186879
Active Participant

Hi Roshan,

The URL should be this:

url:"country/country.xsjs",

Here is the full ajax post request:

$.ajax({

type: "POST",

url: "country/country.xsjs",

contentType: "application/json", data: insertdata, dataType: "json", crossDomain: true,	success: function(data) {

oFirstDialog.close();

sap.ui.getCore().byId("tinytab").getModel().refresh(true);

alert("Data inserted successfully");
},

error: function(data) {	

var message = JSON.stringify(data);

alert(message);
}

});

Make sure you also make the needed changes to the country.xsjs code.

Former Member
0 Kudos

Thank You, Uri
It worked. I was just using the wrong table name in country.xsjs file which was causing the problem

Answers (0)