-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-architecture-notes-2.html
899 lines (448 loc) · 24.7 KB
/
app-architecture-notes-2.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
<!doctype html>
<html class="theme-next mist use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css" />
<meta name="keywords" content="roczhang" />
<link rel="alternate" href="/atom.xml" title="Roc Zhang's Blog" type="application/atom+xml" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.0" />
<meta name="description" content="App Architecture 读书笔记第二章 Overview of Application Design Patterns">
<meta property="og:type" content="article">
<meta property="og:title" content="App Architecture 笔记 - 2">
<meta property="og:url" content="http://www.roczhang.com/app-architecture-notes-2.html">
<meta property="og:site_name" content="Roc Zhang's Blog">
<meta property="og:description" content="App Architecture 读书笔记第二章 Overview of Application Design Patterns">
<meta property="article:published_time" content="2018-05-30T12:10:41.000Z">
<meta property="article:modified_time" content="2018-11-10T07:02:11.561Z">
<meta property="article:author" content="Roc Zhang">
<meta name="twitter:card" content="summary">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Mist',
sidebar: {"position":"left","display":"post","offset":12,"offset_float":0,"b2t":false,"scrollpercent":false},
fancybox: true,
motion: true,
duoshuo: {
userId: 'undefined',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://www.roczhang.com/app-architecture-notes-2.html"/>
<title> App Architecture 笔记 - 2 | Roc Zhang's Blog </title>
<meta name="generator" content="Hexo 4.2.1"></head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-128981660-1', 'auto');
ga('send', 'pageview');
</script>
<div class="container sidebar-position-left page-post-detail ">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Roc Zhang's Blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<h1 class="site-subtitle" itemprop="description"></h1>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-me">
<a href="/me" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
关于我
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://www.roczhang.com/app-architecture-notes-2.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Roc Zhang">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.png">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Roc Zhang's Blog">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
App Architecture 笔记 - 2
</h2>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-05-30T15:10:41+03:00">
2018-05-30
</time>
</span>
<span class="post-category" >
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/Code/" itemprop="url" rel="index">
<span itemprop="name">Code</span>
</a>
</span>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/app-architecture-notes-2.html#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count"
data-disqus-identifier="app-architecture-notes-2.html" itemprop="commentCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p><a href="https://www.objc.io/books/app-architecture/" target="_blank" rel="external">App Architecture</a> 读书笔记<br>第二章 Overview of Application Design Patterns<br><a id="more"></a></p>
<p>第一篇:<a href="https://www.roczhang.com/app-architecture-notes-1.html">App Architecture 笔记 - 1 Introduction</a><br>第二篇:<a href="https://www.roczhang.com/app-architecture-notes-2.html">App Architecture 笔记 - 2 Overview, MVC/MVVM-C</a></p>
<h2 id="Model-View-Controller"><a href="#Model-View-Controller" class="headerlink" title="Model-View-Controller"></a>Model-View-Controller</h2><h3 id="Overview"><a href="#Overview" class="headerlink" title="Overview"></a>Overview</h3><ul>
<li>少数的 controller 对象负责处理所有 model 层与 view 层之外的任务,包括:<ol>
<li>收集所有 view actions</li>
<li>处理所有交互逻辑</li>
<li>分发 model actions</li>
<li>收集所有 model notifications</li>
<li>准备所有用于展示的数据</li>
<li>将变更应用到视图 </li>
</ol>
</li>
<li>依赖:<ol>
<li>view / model 不在代码中直接引用 controller</li>
<li>controller 实例知道 view / model 的接口以及连接对象</li>
</ol>
</li>
</ul>
<h3 id="5-Tasks"><a href="#5-Tasks" class="headerlink" title="5 Tasks"></a>5 Tasks</h3><ul>
<li>Construction:<ol>
<li>构建顶层 view controllers -> 加载与配置 view,及要展示的 model 数据</li>
<li>controllers 创建并持有模型层,或使用懒加载的单例访问模型</li>
<li>与视图有关的模型对象缓存在控制器中 </li>
</ol>
</li>
<li>Updating the Model:<ol>
<li>MVC 中 controller 通常使用 target/action、delegate 等方式来接收 view events</li>
<li>当 view events 到来时,控制器改变期内部的状态、更改模型或直接改变视图层级结构 </li>
</ol>
</li>
<li>Chaning the View:<ol>
<li>控制器订阅 model notifications,当 model notifications 到达时,controller 去改变视图层级结构,以使数据能够单向流动 </li>
</ol>
</li>
<li>View State:<ol>
<li>View State 按需被存在 view 或 controller 中</li>
<li>影响 view 或 contrller 状态的 view action 不要求通过 model 传递 </li>
</ol>
</li>
<li>Testing:<ol>
<li>MVC 中,由于 controllers 与其他组件间需紧密结合,缺乏边界,导致很难编写单元/接口测试</li>
<li>集成测试可行。在测试中构建 view/model/controller 间的连接部分,测试逻辑与组件间的连接 </li>
</ol>
</li>
</ul>
<h3 id="Importance-of-Model-View-Controller"><a href="#Importance-of-Model-View-Controller" class="headerlink" title="Importance of Model-View-Controller"></a>Importance of Model-View-Controller</h3><ul>
<li>系统中默认的设计模式</li>
<li>MVC 的相对自由是的多种变体模式都能被整合进其中</li>
<li>历史:<ol>
<li>MVC 首次被用在 1979 年,Smalltalk-76 中。</li>
<li>原始公式中,视图直接被附给 model 对象,控制器仅用于捕获事件与转发给对象</li>
<li>原始 Smalltalk 对 MVC 实现中,持续下来的理念是 view 层与 model 层应当分离 </li>
</ol>
</li>
</ul>
<p><br></p>
<h2 id="Model-View-ViewModel-Coordinator"><a href="#Model-View-ViewModel-Coordinator" class="headerlink" title="Model-View-ViewModel+Coordinator"></a>Model-View-ViewModel+Coordinator</h2><h3 id="Overview-1"><a href="#Overview-1" class="headerlink" title="Overview"></a>Overview</h3><ul>
<li>与 MVC 相同,都围绕一个 scene(视图层级结构中的一个子视图场景)来构建</li>
<li>每个 scene 使用一个 view-model 来描述场景中展示与交互的逻辑用于描述 view 上要展示值的属性,这些值从底层模型中经过一系列转化得来,可被直接用于视图</li>
<li>通过绑定确保发生变化后视图可及时展示</li>
<li>响应式是用于表达这种类型与转换的工具,天然适合 MVVM</li>
<li>对 view 层级没有直接引用使得 view-model能脱离框架方便测试</li>
<li>MVVM-C 中,使用 coordinator 协调器来负责场景间转换的逻辑。coordinator 持有对模型层的引用,并了解视图控制器树,因此它可为每个场景提供其所需要的 model 对象与 view-model</li>
<li>与 MVC 不同,MVVM-C 中试图控制器间不直接引用其他控制器,而是通知 coordinator 有关的 view actions,让 coordinator 来展示新 VC 与设置模型数据,相当于用 coordinator 来管理 tree</li>
<li>View Controller 不再有内部的 view state,而将其移动到 view-model 中,使得 VC 原始的双重身份(A,作为视图层级结构的一部分 / B,调解 view 与 model 间交互)减少到单层(单纯作为视图层级结构一部分),同时,coordinator 负责了 VC 的另一个工作,展示出其他 VC</li>
</ul>
<h3 id="5-Tasks-1"><a href="#5-Tasks-1" class="headerlink" title="5 Tasks"></a>5 Tasks</h3><ul>
<li>Construction:<ol>
<li>单独的模型对象,交由 view-model 持有而不再是 view controllers</li>
<li>与 MVC 不同,VC 不再直接获取或准备数据,而是在构建时创建 view-model,并将 view 绑定到 view-model 暴露出的相关属性上</li>
</ol>
</li>
<li>Updating the Model:<ol>
<li>与 MVC 不同,当 view event 到达后,VC 不改变其内部状态,而是调用 view-model 上的方法,由 view-model 改变其内部状态或模型</li>
</ol>
</li>
<li>Chaning the View:<ol>
<li>与 MVC 不同为,VC 不观察模型,view-model 观察模型,并将 model notifications 进行转化</li>
<li>VC 观察 view-model(通常通过响应式),当 view-model 事件到来,VC 改变其视图层级结构</li>
</ol>
</li>
<li>View State:<ol>
<li>视图状态在 view 中或 view-model 中</li>
<li>与 MVC 不同,VC 中不含任何 view state,controller 观察 view-model 的 view state 变化 </li>
</ol>
</li>
<li>Testing:<ol>
<li>由于 view-model 与 view 层和 controller 层解耦,view-model 可进行接口测试而不是 MVC 中的集成测试</li>
<li>为使接口测试尽可能多的覆盖,VC 需要尽量保持简洁</li>
</ol>
</li>
</ul>
<h3 id="Importance-of-Model-View-Controller-1"><a href="#Importance-of-Model-View-Controller-1" class="headerlink" title="Importance of Model-View-Controller"></a>Importance of Model-View-Controller</h3><ul>
<li>MVVM 与 MVC 最大区别在于使用响应式将 view-model 中的状态表达成一系列转换和依赖关系,清晰地描述出模型与要展示值之间的关系,可以让人更好的理解 app 中的依赖关系</li>
<li>使用 coordinator 来管理 VC 层级的概念非常重要。coordinator 不与 MVVM 直接绑定,因此也可以用在 MVC 等其他模式中</li>
<li>历史:<ol>
<li>MVVM 由 Ken Cooper 和 Ted Peters 指定(他们在微软参与开发 WPF)</li>
<li>WPF 中使用一种叫做 XAML 的基于 XML 的声明式语言来描述视图绑定到 view-model 上的属性</li>
<li>Cocoa 中没有 XAML,所以需要使用如 RxSwift 之类的框架来执行 view-model 与 view 间的绑定</li>
<li>iOS 中的 coordinator 概念由 Soroush Khanlou 2015 年在其网站上提出</li>
</ol>
</li>
</ul>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-nav">
<div class="post-nav-next post-nav-item">
<a href="/app-architecture-notes-1.html" rel="next" title="App Architecture 笔记 - 1">
<i class="fa fa-chevron-left"></i> App Architecture 笔记 - 1
</a>
</div>
<span class="post-nav-divider"></span>
<div class="post-nav-prev post-nav-item">
<a href="/wwdc18-notes-what-is-new-in-cocoa-touch.html" rel="prev" title="WWDC18 Notes - What's New in Cocoa Touch">
WWDC18 Notes - What's New in Cocoa Touch <i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</footer>
</article>
<div class="post-spread">
</div>
</div>
</div>
<div class="comments" id="comments">
<div id="disqus_thread">
<noscript>
Please enable JavaScript to view the
<a href="https://disqus.com/?ref_noscript" target="_blank" rel="noopener">comments powered by Disqus.</a>
</noscript>
</div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<ul class="sidebar-nav motion-element">
<li class="sidebar-nav-toc sidebar-nav-active" data-target="post-toc-wrap" >
文章目录
</li>
<li class="sidebar-nav-overview" data-target="site-overview">
站点概览
</li>
</ul>
<section class="site-overview sidebar-panel">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/avatar.png"
alt="Roc Zhang" />
<p class="site-author-name" itemprop="name">Roc Zhang</p>
<p class="site-description motion-element" itemprop="description"></p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives">
<span class="site-state-item-count">24</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">4</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<span class="site-state-item-count">1</span>
<span class="site-state-item-name">标签</span>
</div>
</nav>
<div class="feed-link motion-element">
<a href="/atom.xml" rel="alternate">
<i class="fa fa-rss"></i>
RSS
</a>
</div>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://github.com/RocZhang9673" target="_blank" title="GitHub">
<i class="fa fa-fw fa-github"></i>
GitHub
</a>
</span>
<span class="links-of-author-item">
<a href="https://twitter.com/roczhang9673" target="_blank" title="Twitter">
<i class="fa fa-fw fa-twitter"></i>
Twitter
</a>
</span>
<span class="links-of-author-item">
<a href="http://weibo.com/u/3210801545" target="_blank" title="Weibo">
<i class="fa fa-fw fa-weibo"></i>
Weibo
</a>
</span>
</div>
</section>
<!--noindex-->
<section class="post-toc-wrap motion-element sidebar-panel sidebar-panel-active">
<div class="post-toc">
<div class="post-toc-content"><ol class="nav"><li class="nav-item nav-level-2"><a class="nav-link" href="#Model-View-Controller"><span class="nav-number">1.</span> <span class="nav-text">Model-View-Controller</span></a><ol class="nav-child"><li class="nav-item nav-level-3"><a class="nav-link" href="#Overview"><span class="nav-number">1.1.</span> <span class="nav-text">Overview</span></a></li><li class="nav-item nav-level-3"><a class="nav-link" href="#5-Tasks"><span class="nav-number">1.2.</span> <span class="nav-text">5 Tasks</span></a></li><li class="nav-item nav-level-3"><a class="nav-link" href="#Importance-of-Model-View-Controller"><span class="nav-number">1.3.</span> <span class="nav-text">Importance of Model-View-Controller</span></a></li></ol></li><li class="nav-item nav-level-2"><a class="nav-link" href="#Model-View-ViewModel-Coordinator"><span class="nav-number">2.</span> <span class="nav-text">Model-View-ViewModel+Coordinator</span></a><ol class="nav-child"><li class="nav-item nav-level-3"><a class="nav-link" href="#Overview-1"><span class="nav-number">2.1.</span> <span class="nav-text">Overview</span></a></li><li class="nav-item nav-level-3"><a class="nav-link" href="#5-Tasks-1"><span class="nav-number">2.2.</span> <span class="nav-text">5 Tasks</span></a></li><li class="nav-item nav-level-3"><a class="nav-link" href="#Importance-of-Model-View-Controller-1"><span class="nav-number">2.3.</span> <span class="nav-text">Importance of Model-View-Controller</span></a></li></ol></li></ol></div>
</div>
</section>
<!--/noindex-->
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright" >
© 2016 -
<span itemprop="copyrightYear">2025</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">Roc Zhang</span>
</div>
<div class="powered-by">
由 <a class="theme-link" href="https://hexo.io" target="_blank" rel="noopener">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next" target="_blank" rel="noopener">
NexT.Mist
</a>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/scrollspy.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/post-details.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.0"></script>
<script id="dsq-count-scr" src="https://roczhang.disqus.com/count.js" async></script>
<script type="text/javascript">
var disqus_config = function () {
this.page.url = 'http://www.roczhang.com/app-architecture-notes-2.html';
this.page.identifier = 'app-architecture-notes-2.html';
this.page.title = 'App Architecture 笔记 - 2';
};
var d = document, s = d.createElement('script');
s.src = 'https://roczhang.disqus.com/embed.js';
s.setAttribute('data-timestamp', '' + +new Date());
(d.head || d.body).appendChild(s);
</script>
<script>
var cloudTieConfig = {
url: document.location.href,
sourceId: "",
productKey: "a79c1aa145ae437d8c58e9e10aa1c84a",
target: "cloud-tie-wrapper"
};
</script>
<script src="https://img1.ws.126.net/f2e/tie/yun/sdk/loader.js"></script>
</body>
</html>