1234567891011121314151617181920212223242526272829 |
- //
- // RQHTTPService+RQGetDspList.m
- // JSJP
- //
- // Created by RONGQING on 2022/1/19.
- //
- #import "RQHTTPService+RQGetDspList.h"
- @implementation RQHTTPService (RQGetDspList)
- /**
- 查询学车短视频列表
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)getDspListWithPageNum:(NSInteger)pageNum pageSize:(NSInteger)pageSize {
- /// 1. 配置参数
- RQKeyedSubscript *subscript = [RQKeyedSubscript subscript];
- subscript[@"pageNum"] = @(pageNum);
- subscript[@"pageSize"] = @(pageSize);
-
- /// 2. 配置参数模型
- RQURLParameters *paramters = [RQURLParameters urlParametersWithMethod:RQ_HTTTP_METHOD_GET path:RQ_GET_DspList parameters:subscript.dictionary];
-
- /// 3.发起请求
- return [[[RQHTTPRequest requestWithParameters:paramters]
- enqueueResultClass:[VideosItem class]]
- rq_parsedResults];
- }
- @end
|