简体   繁体   English

在Android中使用Azure移动服务

[英]Working with azure mobile service in android

I am working on a project in which I have to work with Azure Back end, I have inserted data into the table, but don't know how to get its response and where should I use Json parsing .. below is my code .. please guide me about this 我正在一个必须与Azure后端一起工作的项目中,已将数据插入表中,但是不知道如何获取响应以及我应该在哪里使用Json解析..下面是我的代码..请指导我

 mClient.getTable(TodoItem.class).insert(item, new TableOperationCallback<TodoItem>() {
                public void onCompleted(TodoItem entity, Exception exception, ServiceFilterResponse response) {
                    if (exception == null) {
                        // Insert succeeded


                        Toast.makeText(getApplicationContext(),"yes", Toast.LENGTH_LONG).show();

                    } else {
                        // Insert failed
                        String msg=exception.getCause().getMessage();
                        Toast.makeText(getApplicationContext(), "No", Toast.LENGTH_LONG).show();
                    }
                }
            });

For information on using the Android client SDK for Azure Mobile Apps, see the following articles: 有关将Android客户端SDK用于Azure移动应用程序的信息,请参阅以下文章:

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM