0

我有一个使用 html5 和 javascript 构建的混合 android 应用程序,我想使用 json ajax jquery 将数据发送到谷歌应用程序引擎中的网站。你能给我任何教程吗?

当我点击一个按钮时,我在我的混合 android file.js 应用程序中使用的函数“go”是:

    function go() {


            $.getJSON('website.com', {

        }).done(function( data ) {

            $.each(data, function (key, field) {
               alert(key + " : " + field);
            });
        });  
            return false;
}

现在。我想从上面的 url 中获取一个简单的数据,这将是一个部署在 google app 引擎中的网站......我不知道该怎么做。

请任何教程..

4

1 回答 1

0

查看 Google App Engine 端点: https ://developers.google.com/appengine/docs/java/endpoints/

这使得为​​ Android 开发人员创建应用引擎应用程序变得容易。

于 2013-08-16T14:35:11.580 回答