1

サービスの処理に Asycntask を使用しています。ただし、Retrofit を使用したいので、先に進む前にアドバイスをもらいたいと思っています。私のjsonサービスは次のようなものです。それらのすべてに、結果の JSONObject とデータ (JSONObject または JSONArray) があります。いくつかのチュートリアルを見ると、レトロフィットは GSON で動作し、モデルを GSON 形式 ( http://www.jsonschema2pojo.org/ ) に変換する必要があると書かれています。私が学びたいのは、サービスのこの結果部分もモデルに追加する必要があるということです。Asynctask を使用しているときに、結果部分を解析しています。メッセージが「OK」の場合は、データの解析を開始します。メッセージが「OK」でない場合は、警告ダイアログにメッセージを表示します。それについて何かアドバイスをもらえますか?

 {
  result: {
  code: 0,
  message: "OK",
  dateTime: "20160204135212",
  },
 movie: [
  {
   name: "Movie 1",
   category: "drama"
  },
  {
   name: "Movie 2"
   category: "comedy"
  }
 ]
}
4

2 に答える 2

0

はい、サービスからのこの応答は、アプリのモデルである必要があります。Retrofit は、JSON を Java オブジェクトに自動的にシリアライズします。onResponse

@Override
public void onResponse(Response<Result> response){
    if(response.isSuccess()){
    Result result = response.body();
    if(result.getMessage().equals("OK")){
       //do something 
    }else{
       //show an alert dialog with message
    }
}
于 2016-02-04T20:39:11.300 に答える
0

インターセプターを使用する必要があるようです。

インターセプターは、応答を使用する前にいくつかの作業を行うことができるメカニズムです。変換ロジックを追加する必要がある行をマークします。

  public static class LoggingInterceptor implements Interceptor {
        @Override
        public com.squareup.okhttp.Response intercept(Chain chain) throws IOException {
            Log.i("LoggingInterceptor", "inside intercept callback");
            Request request = chain.request();
            long t1 = System.nanoTime();
            String requestLog = String.format("Sending request %s on %s%n%s",
                    request.url(), chain.connection(), request.headers());
            if (request.method().compareToIgnoreCase("post") == 0) {
                requestLog = "\n" + requestLog + "\n" + bodyToString(request);
            }
            Log.d("TAG", "request" + "\n" + requestLog);
            com.squareup.okhttp.Response response = chain.proceed(request);
            long t2 = System.nanoTime();

            String responseLog = String.format("Received response for %s in %.1fms%n%s",
                    response.request().url(), (t2 - t1) / 1e6d, response.headers());

            String bodyString = response.body().string();

            Log.d("TAG", "response only" + "\n" + bodyString);

            Log.d("TAG", "response" + "\n" + responseLog + "\n" + bodyString);

           // HERE YOU CAN ADD JSON DATA TO EXISTING RESPONSE

            return response.newBuilder()
                    .body(ResponseBody.create(response.body().contentType(), bodyString))
                    .build();

        }


        public static String bodyToString(final Request request) {
            try {
                final Request copy = request.newBuilder().build();
                final Buffer buffer = new Buffer();
                copy.body().writeTo(buffer);
                return buffer.readUtf8();
            } catch (final IOException e) {
                return "did not work";
            }
        }
    }
于 2016-02-04T12:39:01.460 に答える