Pregunta

I want to develop an App using Icenium Graphite for cross platform(Android, ios).

This particular App will also access Database through WebApi.

I am new to Icenium Graphite so please let me know the resources which i can use for development.

¿Fue útil?

Solución

When you write and app with Icenium, it's almost exactly like writing a standard HTML5 web application. Therefore, if you are accessing a service layer like Web API, you can make a standard ajax call with jQuery's $.ajax like so:

$.ajax({
    type: "get",
    url: "http://somewhere.com/service",
    contentType: "application/json",
    dataType: "json",
    success: function (x) {
        console.log(x);
    }
});
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top