我的POST方法遇到了一些问题,错误= 400,这是“错误请求”。
我尽可能地简化了我的代码,以使其正常工作,但仍然显示400。我想念什么吗?问题出在我这边还是服务器上?
代码:
FormApiInterface.kt
interface FormApiInterface {
@POST("/forms/filledForm")
fun sendTrashForm(@Body filledForm: TempFilledForm): Call<TempFilledForm>
}
MenuActivity.kt
class MenuActivity : AppCompatActivity() {
private lateinit var apiInterface : FormApiInterface
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(activity_main)
val apiClient = OkHttpClient().newBuilder().build()
val retrofit = Retrofit.Builder()
.baseUrl(URL_POST)
.client(apiClient)
.addConverterFactory(GsonConverterFactory.create())
.build();
apiInterface = retrofit.create(FormApiInterface::class.java)
}
fun sendTrash() {
val tempFilledForm = TempFilledForm(
userLogin = "filledForm?.userLogin",
formId = "filledForm?.userLogin",
formVersion = "filledForm?.formVersion",
formStatus = "filledForm?.formStatus",
form = "filledForm?.formFieldsData")
val call: Call<TempFilledForm> = apiInterface.sendTrashForm(tempFilledForm)
call.enqueue(object : Callback<TempFilledForm> {
override fun onFailure(call: Call<TempFilledForm>?, t: Throwable?) {
Log.v("retrofit", "call failed")
}
override fun onResponse(call: Call<TempFilledForm>?, response: Response<TempFilledForm>?) {
Log.v("retrofit", response.toString())
}
})
}
我在Activity中的某些onClick内调用sendTrash(),响应就像
V/retrofit: Response{protocol=http/1.1, code=400, message=, url=http:--------(covered it)}
“相似”的问题都没有帮助。预先感谢您的帮助
答案 0 :(得分:1)
正如@Shahriyar Aghajani指出的那样。尝试从服务中删除“ /”。
interface FormApiInterface {
@POST("forms/filledForm")
fun sendTrashForm(@Body filledForm: TempFilledForm): Call<ResponseObject>
}
此外,您的服务器是否发送回与响应相同的对象?
理想情况下,响应与输入正文对象不同!
@Body filledForm: TempFilledForm
来自后端Call<ResponseObject>
的响应对象
如果您在build.gradle中配置了终点,请确保终点以“ /”结尾
buildTypes {
debug {
buildConfigField "String", "BASE_URL", '"http://191.111.3.170:8000/sample/"'
}
}
答案 1 :(得分:0)
从终点开始删除“ /”:
interface FormApiInterface {
@POST("forms/filledForm")
fun sendTrashForm(@Body filledForm: TempFilledForm): Call<TempFilledForm>
}
并在基本网址末尾添加“ /”
答案 2 :(得分:0)
您可以通过向onResponse方法中添加一些日志来尝试找出“错误请求”的原因:
Log.d("TEST", " errorBody: ${response.errorBody()?.string()}")
也许您发送的参数错误。
如果尝试使用其他模型初始化tempFilledForm
变量,请使用$
运算符进行字符串插值,并使用大括号表示表达式:
val tempFilledForm = TempFilledForm(
userLogin = "${filledForm?.userLogin}",
formId = "${filledForm?.userLogin}",
formVersion = "${filledForm?.formVersion}",
formStatus = "${filledForm?.formStatus}",
form = "${filledForm?.formFieldsData}")