RequestServer.java
551 Bytes
package com.studymachine.www.http.model;
import com.studymachine.www.other.AppConfig;
import com.hjq.http.config.IRequestServer;
import com.hjq.http.model.BodyType;
/**
* desc : 服务器配置
*/
public class RequestServer implements IRequestServer {
@Override
public String getHost() {
return AppConfig.getHostUrl();
}
@Override
public String getPath() {
return "api/";
}
@Override
public BodyType getType() {
// 以表单的形式提交参数
return BodyType.JSON;
}
}