在使用Retrofit来作为网络请求库之后,笔者查阅了网上的有关教程,无外乎都是请求json数据,使用addConverterFactory(GsonConverterFactory.create())来作为转化器,如果业务需求是请求 字符串,而不是json数据格式呢,继续使用这个转换器就会产生错误。
官方文档查阅:http://square.github.io/retrofit/
Paste_Image.pngString类型:
compile 'com.squareup.retrofit2:converter-scalars:2.0.0'
网友评论