Tag: retrofit2 moshi

使用Moshi将json中的字符串日期转换为Date对象

与Gson你会做到这一点 Gson gson = new GsonBuilder() .setDateFormat("yyyy-MM-dd'T'HH:mm") .create(); 并把它传递给改造者,Gson会为你制作一个Date对象,有没有办法让Moshi在Kotlin类中也这样做?