• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

改造2.0后要求

用户头像
it1352
帮助1

问题说明

您好,我想实现利用改造2.0发布采购信息

Hello I am trying to implement Post request using Retrofit 2.0

我的问题是,演出,我应该写onResponse从而通过从用户输入或手动获取数据。

My Question is that show Should I write in onResponse so as to get data by taking input from the user or manually.

感谢您

正确答案

#1

有关POST方法你在接口来使用@Body标记

for post method you have to use @Body tags in interface

@POST("/api/Cards")
Call<List<Card>> createCards(@Body List<Card> cards);

和从活动称之为

Card card=new Card();
card.setId(20);
card.setTitle("New Cards");
card.setMessage("New Launched cards");

List<Card> cards=new List<Card>();
cards.add(card);
Retrofit retrofit = new Retrofit.Builder()
            .baseUrl(BASE_URL).addConverterFactory(GsonConverterFactory.create())
            .build();

    RequestApi requestApi = retrofit.create(RequestApi.class);
    mCardsRequest = requestApi.createCards(cards);
    mCardsRequest.enqueue(new Callback<List<Card>>() {
        @Override
        public void onResponse(Call<List<Card>> call, Response<List<Card>> response) {
            ** what should I add here to post data **   
        }

        @Override
        public void onFailure(Call<List<Card>> call, Throwable t) {
            //
        }
    });

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfjfbk
系列文章
更多 icon
同类精品
更多 icon
继续加载