Retrofit转换器

在使用Retrofit来作为网络请求库之后,笔者查阅了网上的有关教程,无外乎都是请求json数据,使用addConverterFactory(GsonConverterFactory.create())来作为转化器,如果业务需求是请求 字符串,而不是json数据格式呢,继续使用这个转换器就会产生错误。

官方文档查阅:http://square.github.io/retrofit/

Retrofit转换器_第1张图片
Paste_Image.png

String类型:

compile 'com.squareup.retrofit2:converter-scalars:2.0.0'

你可能感兴趣的:(Retrofit转换器)