代码写了这么久了,尤其是在H5大行其道的今天,项目中一半native一半H5,我眼睁睁的看着我的controller中H5页面给一个URL就能简单的实现跳转,而我原生的controller则需要写一大推的代码给一大推的参数然后非常蛋疼的import进我定义的每一个类,那真是一种痛苦而又无奈的做法,于是我就想既然web页面可以通过URL来传递参数进行跳转,那原生的controller有没有这种给个URL就能跳转的可能呢?
没错,我的思考就是传说中的controller的统跳,将viewController映射成URL,根据URL跳转到相应的页面,页面所需的一切数据都通过URL来传递,每个Controller跳转的时候不再相互依赖,能够有效的减少耦合。
殊不知像阿里和携程这种大厂早就这么做了。参考了他们项目的架构演示,我知道了Router这么个东西,从而了解到今天的主角:由火花开源的HHRouter(https://github.com/Huohua/HHRouter)。
没错,已经有人制造了轮子,看了下源码,200多行的代码写的真6。
恩,没错,本来想根据自己的思想制造个轮子,不曾想看了火花的源码之后突然放弃了,好吧,我承认我再怎么写也摆脱不了他的思想了。既然不能打败他那我们就学习他吧。
说干就干,CocoaPods引入HHRouter。然后在appdelegate的didFinishLaunchingWithOptions方法中定义映射的URL,比如:
[[HHRouter shared] map:@"/specialActivity/:title/:isShowAlertViewWhileBack/:store" toControllerClass:[WGSpecialActivityReportViewController class]];
然后在你页面需要跳转到WGSpecialActivityReportViewController得地方使用如下方法跳转:
NSDictionary *dic=[model mj_keyValues];
NSString *jsonStr=[dic mj_JSONString];
UIViewController *viewController=[[HHRouter shared] matchController:[NSString stringWithFormat:@"/specialActivity/%@/%id/%@",@"特殊活动上报",true,jsonStr]];
[self.navigationController pushViewController:viewController animated:YES];
注意:
[[HHRouter shared] map:@"/specialActivity/:title/:isShowAlertViewWhileBack/:store" toControllerClass:[WGSpecialActivityReportViewController class]];
这段代码中的title,isShowAlertViewWhileBack和store就是通过URL方式从父视图传到子视图WGSpecialActivityReportViewController的参数。子视图中通过setParams重写方法去解析URL中传递的参数并使用:
- (void)setParams:(NSDictionary *)params{
[super setParams:params];
self.title=params[@"title"];
self.isShowAlertViewWhileBack=[params[@"isShowAlertViewWhileBack"] boolValue];
wgStoreModel *model=[wgStoreModel mj_objectWithKeyValues:params[@"store"]];
self.storeModel=model;
}
这里需要注意的是,我往子视图传的store是一个模型,并不是一个简单的字符串,也许你会疑问模型该怎么传,没错,就像我这样做,把模型先转成字符串型通过URL传到子视图,子视图解析拿到字符串之后把字符串再转成模型。这样就成功解决了传模型的问题。
//把模型转成了字符串
NSDictionary *dic=[model mj_keyValues];
NSString *jsonStr=[dic mj_JSONString];
其实在使用的过程中,我还发现了许多传参数的问题,由此可见其实使用这种路由统跳局限性也是很大的,但为了减少代码量,为了减少耦合性,我还是决定在项目中使用它。其中,在我需要往子视图传一串webview需要使用的URL时出现了懵逼的状况。比如我需要往子视图传 @"/mkt-front/html/specialActivity.html"这个URL的时候,就发现出错了。其实从HHRouter的源码中可知"/"和“?”是原本用来截取字段的关键字:
- (NSArray *)pathComponentsFromRoute:(NSString *)route
{
NSMutableArray *pathComponents = [NSMutableArray array];
NSURL *url = [NSURL URLWithString:[route stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
for (NSString *pathComponent in url.path.pathComponents) {
if ([pathComponent isEqualToString:@"/"]) continue;
if ([[pathComponent substringToIndex:1] isEqualToString:@"?"]) break;
[pathComponents addObject:[pathComponent stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
}
return [pathComponents copy];
}
所以,如果你直接把web需要的url地址往controller的统跳URL中拼接,HHRouter会根据“/“去截取,把截取的字段当做参数,这明显是错误的。
固,当你在传url的时候务必把url中的”/"给转译,比如我这样做:
NSString *urls=[@"http://www.baidu.com//index" stringByReplacingOccurrencesOfString:@"/" withString:@"*"];
viewController=[[HHRouter shared] matchController:[NSString stringWithFormat:@"/dataViewControllerH5_business/%@/%@/%id",model.name,urls,true]];
我把url中的"/"替换成了“*”,然后在子视图解析参数的时候再替换回来:
- (void)setParams:(NSDictionary *)params{
NSString *urlString=[[NSString stringWithFormat:@"%@",params[@"urlJson"]] stringByReplacingOccurrencesOfString:@"*" withString:@"/"];
self.urls=urlString;
self.hidesBottomBarWhenPushed=[params[@"hidesBottomBarWhenPushed"] boolValue];
}
恩,就是这么酷,就是这么别扭,爱她就忍受她吧。
无demo不文章,本文demo请从我的github中下载:https://github.com/voidxin/RDRouterDemo
欢迎批评指正。