服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS端React Native差异化增量更新的实现方法

iOS端React Native差异化增量更新的实现方法

2021-04-28 17:09大白米饭 IOS

这篇文章主要给大家介绍了关于iOS端React Native差异化增量更新的实现方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

前言

作为一名ios原生开发工程师,通过一个礼拜的面试之后发现,原来并不想学的react-native真的是火的一塌糊涂,坐标:杭州,很多公司招聘ios开发除了原来的oc和swift,多了一门新语言:react-native,真的是要人老命啊,swift4.0刚刚看完,又得花时间学rn。入职之后也开始学react-native,算是小白一枚,下面是我的个人总结,有大神看出错误,请不要打我或者骂我,联系我邮箱dadadoubi@qq.com。

rn具有的优势有很多,跨平台开发,一套代码android和ios通用,热更新,不用一直等苹果爸爸慢吞吞的审核流程,所谓工欲善其事,必先利其器,rn的热更新部署肯定得学下,今天就总结一下一个刚学rn的小白对热更新的理解。

个人理解,rn的热更新有点类似app的版本更新,app内版本号与server端匹配,来判断是否要更新,替换加载的jsbundle文件,然后加载新的jsbundle文件来实现版本更新,那么实质上就是把app内要加载的jsbundle文件替换掉就ok了。

原理分析

简单介绍了一下原理,那么废话不多说,直接开始写了,这篇文章主要讲的是前面两步:jsbundle的打包命令和差异化的比较

iOS端React Native差异化增量更新的实现方法

react-native打ios离线包

打包命令说明

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
react-native bundle
options:
--entry-file <path>   path to the root js file, either absolute or relative to js root
(一般为index.js文件)
--platform [string]   either "ios" or "android"
(rn入口文件的路径, 绝对路径或相对路径)
--transformer [string]  specify a custom transformer to be used
 
--dev [boolean]    if false, warnings are disabled and the bundle is minified
(如果为false, 警告会不显示并且打出的包的大小会变小,默认为--dev true
--prepack     when passed, the output bundle will use the prepack format.
(当通过时, 打包输出将使用prepack格式化,默认为--prepack false
--bridge-config [string]  file name of a a json export of __fbbatchedbridgeconfig. used by prepack. ex. ./bridgeconfig.json
(使用prepack的一个json格式的文件__fbbatchedbridgeconfig 例如: ./bridgeconfig.json)
 --bundle-output <string>  file name where to store the resulting bundle, ex. /tmp/groups.bundle
(打包后的文件输出目录, 例: /tmp/groups.bundle)
--bundle-encoding [string] encoding the bundle should be written in (https://nodejs.org/api/buffer.html#buffer_buffer).[default: "utf8"]
(打离线包的格式 可参考链接https://nodejs.org/api/buffer.html#buffer_buffer.默认为utf-8格式)
---sourcemap-output [string] file name where to store the sourcemap file for resulting bundle, ex. /tmp/groups.map
(生成source map,但0.14之后不再自动生成source map,需要手动指定这个参数。例: /tmp/groups.map)
--assets-dest [string]  directory name where to store assets referenced in the bundle
(打包时图片资源的存储路径)
--verbose     enables logging
(显示打包过程)
--reset-cache    removes cached files
(移除缓存文件)
--config [string]   path to the cli configuration file
(命令行的配置文件路径)

事实上上面打包命令说明不看也没事,下面是具体操作

1. cd [项目路径]

2.  在react-native根目录下的ios目录下新建bundle文件夹(mkdir ./ios/bundle)(注意:输入打包命令前必须先新建bundle文件夹)

3. 打包命令:react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ./ios/bundle/index.ios.jsbundle --assets-dest ./ios/bundle/

4. 结果展示![clipboard.png](/img/bv8rs9)

iOS端React Native差异化增量更新的实现方法

当rn项目中有引用图片资源时,打包出来为下面示意图(如果图片资源是在xcode工程内部时则不会生成)

iOS端React Native差异化增量更新的实现方法

patches.pad差异化文件终端生成方案

利用google的diff文件(资料查出来,这个比较受欢迎,同时也兼容objective-c),github地址:https://github.com/google/dif...

1.终端输入:git clone https://github.com/liuc520/nodediffpatch.git

2.终端输入:cd nodediffpatch && npm i

3.终端输入:sudo npm link

4.把新旧文件放入nodediffpatch/patch目录下

iOS端React Native差异化增量更新的实现方法

5.终端输入:patbundle patch -o test01old.jsbundle -n test01new.jsbundle

iOS端React Native差异化增量更新的实现方法

这样,用终端的生成差异化文件就ok了。

ios实现生成差异化文件

首先,得先把diff-match-patch下载下来,需要集成它

集成有优化方案有大神知道的话跟我说一下,我反正是用很粗糙的做法,将它的类直接拖入你的工程中,不知道的也可以用我的方式。简单在,直接,嘿嘿!

iOS端React Native差异化增量更新的实现方法

把这些文件拖入到工程中,选择create group方式,(别喷,要脸,是在不知道怎么集成)“集成”后的项目结构

iOS端React Native差异化增量更新的实现方法

然后导入(#import "diffmatchpatch.h")就可以开始用了,下面演示用l1.txt和l2.txt文件来展示,可以比较直观的看出效果

l1.txt文本:123

l2.txt文本:12345

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
- (void)demo1{
 // 获取l1.txt文件路径
 nsstring *path01 = [[nsbundle mainbundle]pathforresource:@"l1" oftype:@"txt"];
 // 根据l1.txt文件路径获取data内容
 nsdata *data01 = [nsdata datawithcontentsoffile:path01];
 // 将data内容转换成字符串格式
 nsstring *str01 = [[nsstring alloc] initwithdata:data01 encoding:nsutf8stringencoding];
 // 获取l2.txt文件路径
 nsstring *path02 = [[nsbundle mainbundle]pathforresource:@"l2" oftype:@"txt"];
 // 根据l2.txt文件路径获取data内容
 nsdata *data02 = [nsdata datawithcontentsoffile:path02];
 // 将data内容转换成字符串格式
 nsstring *str02 = [[nsstring alloc] initwithdata:data02 encoding:nsutf8stringencoding];
 // 创建diffmatchpatch工具类对象
 diffmatchpatch *patch = [[diffmatchpatch alloc]init];
 // 对比文件内容
 // 执行该语句之后会在bundle目录下生成patches.bat文件(差异补丁文件)
 nsmutablearray *patchesarr = [patch diff_mainofoldstring:str01 andnewstring:str02 checklines:yes];
 // 生成差异补丁包
 nsarray *patchesarr1 = [patch patch_makefromdiffs:patchesarr];
 // 解析补丁包
 nsarray *newarray = [patch patch_apply:patchesarr1 tostring:str01];
 //写入到新文件(注意:这边为了在pc端更加直观的看,直接写入到绝对路径)
 bool istrue = [newarray[0] writetofile:@"/users/devil/desktop/自己的/rnplatform/ios/l1.txt" atomically:yes encoding:nsutf8stringencoding error:nil];
 if (istrue) {
 nslog(@"写入成功");
 }else{
 nslog(@"写入失败");
 }
}

执行代码后:

l1.txt文本:12345

当然,你可以打印一下path01路径字符串,在这个路径下会生成patches.pat差异化文件,我执行的时候打断点发现

?
1
nsmutablearray *patchesarr = [patch diff_mainofoldstring:str01 andnewstring:str02 checklines:yes];

执行该语句之后生成,但是用[[nsbundle mainbundle]pathforresource:@"patches" oftype:@"pat"];访问不到文件,有大神知道什么原因可以跟我说下。

ios实现patches.pat与旧jsbundle离线包合并得到新的jsbundle离线包

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- (void)demo2{
 // 获取l1.txt文件路径
 nsstring *path01 = [[nsbundle mainbundle]pathforresource:@"l1" oftype:@"txt"];
 // 根据l1.txt文件路径获取data内容
 nsdata *data01 = [nsdata datawithcontentsoffile:path01];
 // 将data内容转换成字符串格式
 nsstring *str01 = [[nsstring alloc] initwithdata:data01 encoding:nsutf8stringencoding];
 // 创建diffmatchpatch工具类对象
 diffmatchpatch *patch = [[diffmatchpatch alloc]init];
 // 获取差异化文件包路径
 nsstring *patchespath = [[nsbundle mainbundle]pathforresource:@"patches.pat" oftype:nil];
 //获取差异化文件内容
 nsdata *patchesdata = [nsdata datawithcontentsoffile:patchespath];
 //解析差异化文件内容
 nsstring *patchesstr = [[nsstring alloc]initwithdata:patchesdata encoding:nsutf8stringencoding];
 //转换pat
 nsmutablearray *patchesarr = [patch patch_fromtext:patchesstr error:nil];
 // 解析补丁包
 nsarray *newarray = [patch patch_apply:patchesarr tostring:str01];
 //获取新文件路径
// nsstring *newfilepath = [[nsbundle mainbundle]pathforresource:@"text3" oftype:@"txt"];
 //写入到新文件(注意:这边为了在pc端更加直观的看,直接写入到绝对路径)
 bool istrue = [newarray[0] writetofile:@"/users/devil/desktop/自己的/rnplatform/ios/text3.txt" atomically:yes encoding:nsutf8stringencoding error:nil];
 if (istrue) {
 nslog(@"写入成功");
 }else{
 nslog(@"写入失败");
 }
}

实现本地更新离线包

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//创建两个按钮,第一个按钮跳转rn界面,加载jsbundle包,第二个按钮负责更新jsbundle包
uibutton *btn4 = [[uibutton alloc]init];
 [btn4 settitle:@"第五个" forstate:uicontrolstatenormal];
 [btn4 settitlecolor:[uicolor blackcolor] forstate:uicontrolstatenormal];
 btn4.frame = cgrectmake(40, 170, 60, 30);
 [btn4 addtarget:self action:@selector(clickfifth) forcontrolevents:uicontroleventtouchupinside];
 [self.view addsubview:btn4];
 
 uibutton *btn5 = [[uibutton alloc]init];
 [btn5 settitle:@"更新第五个界面" forstate:uicontrolstatenormal];
 [btn5 settitlecolor:[uicolor blackcolor] forstate:uicontrolstatenormal];
 btn5.frame = cgrectmake(40, 200, 60, 30);
 [btn5 addtarget:self action:@selector(demo2) forcontrolevents:uicontroleventtouchupinside];
 [self.view addsubview:btn5];
//btn4按钮点击事件
- (void)clickfifth{
 nsurl *jscodelocation;
 jscodelocation = [[nsbundle mainbundle]urlforresource:@"test01old" withextension:@"jsbundle"];
 [self creactrnpath:jscodelocation modulename:@"test01platcode"];
}
 
- (void)creactrnpath:(nsurl *)jscodelocation modulename:(nsstring *)modulename{
 rctrootview *rootview = [[rctrootview alloc] initwithbundleurl:jscodelocation
              modulename:modulename
            initialproperties:nil

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。

原文链接:https://segmentfault.com/a/1190000014370027

延伸 · 阅读

精彩推荐
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01