Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 305 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 305 Bytes

封装Moya+RxSwift+HandyJSON网络请求框架

SLNetworkingHandler
.request(.loadCarBrand)
.mapModels(Model.self) #转换数据模型,可不加
.mapSectionModel("", type: Model.self) #转成DataSource,可不加
.subscribe(onNext: { (model) in

}, onError: { (error) in

})
.disposed(by: bag)