-
Notifications
You must be signed in to change notification settings - Fork 0
Test
StormKid edited this page Jul 18, 2019
·
2 revisions
Test请求,即完全不处理response 以及完全返回 err的请求
请求写法:
fun doTest(){
Okkt.instance.TestBuilder().setUrl("http://www.baidu.com").testGet(object : TestCallbackRule{
override suspend fun onResponse(response: TestCallbackRule.Response) {
Log.w("response","${response.body.toString()}----${response.heads}")
}
override suspend fun onErr(err: String) {
}
})
}
方法名 | 参数类型 | 方法描述 |
---|---|---|
setParams | HashMap | 拼接在url字符串后面的请求参数 |
putBody | HashMap | 给post请求提供请求体参数 |
setUrl | String | 忽略请求base,直接输入的url |