从 Android 应用程序获取/发布数据到 MVC3 网站和反之亦然
我要开发一个 Android 应用程序,我之前已经做过几次了,但现在的技巧是我需要访问数据库(而不是设备中的 sqllite)。而且我们之前做过一个网站,有我需要的所有功能。所以我的想法是使用该网站(MVC3)从数据库获取信息,并将信息从应用程序发送到数据库。 你们对我如何编写代码有一些想法吗?我需要的是用 Json 或 Gson 将数据从网站接收到应用程序,然后我需要从应用程序将一些数据发布到控制器,不知道我是否需要使用 url 参数或者是否可以使用 Jsom也是这样吗?
Im gonna develope a Android app wich i have done few times before, but the trick now is that i need to access a database (not sqllite in the device). And we have done a website before that has all the functions that i need. So my thought was to use that website (MVC3) to get information from the database, and send information to the database from the App.
Do you guys have some ideas for me how to code that? What i need is to recieve data from the website to the App with Json or Gson i guess, then i need to post up some data to the controllers from the App, dont know if i need to use url parameters or if i can use Jsom that way aswell?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在 ASP.NET 控制器中发送 json 对象,如下所示:
{"name":"foo","age":5}
控制器的代码可能类似于:
编辑:
在Android端,这是发送请求和接收响应的方法:
To send a json object in the ASP.NET Controller like:
{"name":"foo","age":5}
The code of the Controller could be something like:
EDIT:
On the Android side, here it is the method to send the request and receive the response:
您可以使用 JSON 请求。 ASP.NET MVC 3 有一个内置的 JsonValueProvider,它允许将 JSON 请求反序列化为强类型视图模型。例如,假设您有以下模型:
和以下控制器操作:
您可以向其发送以下
POST
请求:You can use JSON requests. ASP.NET MVC 3 has a built-in JsonValueProvider which allows to deserialize JSON requests into strongly typed view models. For example let's suppose that you have the following model:
and the following controller action:
you could send the following
POST
request to it: