2024.5.6
所学时间:2.2小时
代码行数:62
博客园数:1篇
所学知识:今天准备学习前后端分离的retrofit2,它可以帮助我们与后端服务器进行通信和数据交换。通过 Retrofit2,我们可以方便地定义 REST API 接口,并实现与后端的数据交互。
首先要先添加配置:
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
创建 Retrofit 实例: 在应用程序的启动或初始化阶段,创建 Retrofit 对象,并配置其基本参数,如基础 URL、转换器等。
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://api.example.com/")
.addConverterFactory(GsonConverterFactory.create())
.build();