-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1177 lines (519 loc) · 27.4 KB
/
index.html
File metadata and controls
1177 lines (519 loc) · 27.4 KB
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
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="theme-next mist use-motion">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<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="//cdn.bootcss.com/fancybox/2.1.5/jquery.fancybox.min.css" 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="//cdn.bootcss.com/font-awesome/4.6.2/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.0.1" rel="stylesheet" type="text/css" />
<meta property="og:type" content="website">
<meta property="og:title" content="柚子君">
<meta property="og:url" content="http://blog.youziclub.com/index.html">
<meta property="og:site_name" content="柚子君">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="柚子君">
<script type="text/javascript" id="hexo.configuration">
var NexT = window.NexT || {};
var CONFIG = {
scheme: 'Mist',
sidebar: {"position":"left","display":"hide"},
fancybox: true,
motion: true,
duoshuo: {
userId: undefined,
author: '博主'
}
};
</script>
<title> 柚子君 </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container one-collumn sidebar-position-left
page-home
">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><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">柚子君</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</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-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-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about" 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">
<section id="posts" class="posts-expand">
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/05/06/白话 Hybrid 方案(上) —— jsBridge 通信/" itemprop="url">
白话 Hybrid 方案(上) —— jsBridge 通信
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<!-- 发表于 -->
<span class="iconfont"></span>
<time itemprop="dateCreated" datetime="2018-05-06T00:00:00+08:00" content="2018-05-06">
2018-05-06
</time>
</span>
<span class="post-category" >
|
<!-- 分类于 -->
<span class="iconfont"></span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/技术/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
</span>
</div>
</header>
<div class="post-body">
<div class="post-gallery" itemscope itemtype="http://schema.org/ImageGallery">
<div class="post-gallery-row">
<a class="post-gallery-img fancybox"
href="https://ws1.sinaimg.cn/large/006cGJIjly1fiza4vwhtkj30b40640sz.jpg" rel="gallery_cjgv2mies0000ijbyiyotb569"
itemscope itemtype="http://schema.org/ImageObject" itemprop="url">
<img src="https://ws1.sinaimg.cn/large/006cGJIjly1fiza4vwhtkj30b40640sz.jpg" itemprop="contentUrl" style="max-height: 300px"/>
</a>
</div>
</div>
<h2 id="写在前面"><a href="#写在前面" class="headerlink" title="写在前面"></a>写在前面</h2><p>从 PhoneGap 开始,发展到现在,Hybrid 方案已经变得相当成熟了,在很多应用中都能见到它的身影,而最具代表性的杀手级应用微信的出现,将 Hybrid 方案推向了一个高潮。Hybrid 应用简单的可以理解为一个可以调用 Native 功能的web app,其中的核心就是借助 jsBridge 实现 js 与 Native 间的相互通信。为什么说相互通信是核心呢,js 与 Native 之间又是如何通信的呢?<br>
<div class="post-more-link text-center">
<a class="btn" href="/2018/05/06/白话 Hybrid 方案(上) —— jsBridge 通信/#more" rel="contents">
阅读全文 »
</a>
</div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/11/15/RN打包那些事儿/" itemprop="url">
RN 打包那些事儿
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<!-- 发表于 -->
<span class="iconfont"></span>
<time itemprop="dateCreated" datetime="2017-11-15T00:00:00+08:00" content="2017-11-15">
2017-11-15
</time>
</span>
<span class="post-category" >
|
<!-- 分类于 -->
<span class="iconfont"></span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/技术/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
</span>
</div>
</header>
<div class="post-body">
<div class="post-gallery" itemscope itemtype="http://schema.org/ImageGallery">
<div class="post-gallery-row">
<a class="post-gallery-img fancybox"
href="https://ws1.sinaimg.cn/large/c4b5f11bly1flggag4y6fj20du06vt9r.jpg" rel="gallery_cjf3nkt4500093i433l57l298"
itemscope itemtype="http://schema.org/ImageObject" itemprop="url">
<img src="https://ws1.sinaimg.cn/large/c4b5f11bly1flggag4y6fj20du06vt9r.jpg" itemprop="contentUrl" style="max-height: 300px"/>
</a>
</div>
</div>
<p><a href="https://github.com/facebook/react-native/tree/v0.48.1" target="_blank" rel="noopener">React Native</a> (以下简称 RN)是 Facebook 开源的一款跨平台移动端开发框架,它与 Hybrid 方案相比,性能更好,拥有更流畅的用户体验,而与原生客户端开发相比,开发成本低,效率高,能够快速进行版本迭代和产品上线。我们从16年3月份开始在公司大范围使用 <a href="https://ued.qunar.com/qrn/" target="_blank" rel="noopener">QRN</a>(基于 RN 进行深度定制的移动开发框架),截至目前已有四十多个项目接入,我们在 RN 开发方面有着大量的踩坑经验,本文以 RN 打包作为切入点,分享一下 RN 官方在打包方面做了哪些处理,以及 QRN 在打包上进行了怎样的定制。<br>
<div class="post-more-link text-center">
<a class="btn" href="/2017/11/15/RN打包那些事儿/#more" rel="contents">
阅读全文 »
</a>
</div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/09/15/巧妙实现固定定位/" itemprop="url">
巧妙实现固定定位
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<!-- 发表于 -->
<span class="iconfont"></span>
<time itemprop="dateCreated" datetime="2017-09-15T00:00:00+08:00" content="2017-09-15">
2017-09-15
</time>
</span>
<span class="post-category" >
|
<!-- 分类于 -->
<span class="iconfont"></span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/技术/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
</span>
</div>
</header>
<div class="post-body">
<p>提到实现固定定位,多数人第一反应想到的就是使用 <code>position: fixed;</code>,的确,这是最为直接的,也是最为简单的方式;然而,在移动端,<code>position: fixed;</code> 目前的表现并不是那么理想(例如 <code>input</code> 元素获取焦点会影响 <code>fixed</code> 定位),或者需要使一个固定定位的元素支持水平方向上的滚动,<code>fixed</code> 也是不能满足的,因此,笔者将在下文中,结合移动端的例子再介绍两种其他的方式来实现固定定位。<br>
<div class="post-more-link text-center">
<a class="btn" href="/2017/09/15/巧妙实现固定定位/#more" rel="contents">
阅读全文 »
</a>
</div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/07/03/移动前端调试大全/" itemprop="url">
移动前端调试大全
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<!-- 发表于 -->
<span class="iconfont"></span>
<time itemprop="dateCreated" datetime="2017-07-03T00:00:00+08:00" content="2017-07-03">
2017-07-03
</time>
</span>
<span class="post-category" >
|
<!-- 分类于 -->
<span class="iconfont"></span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/技术/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
</span>
</div>
</header>
<div class="post-body">
<div class="post-gallery" itemscope itemtype="http://schema.org/ImageGallery">
<div class="post-gallery-row">
<a class="post-gallery-img fancybox"
href="http://img.kuqin.com/upimg/allimg/161222/1224556264-0.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" rel="gallery_cjf480ovk000k33byevn8t6z0"
itemscope itemtype="http://schema.org/ImageObject" itemprop="url">
<img src="http://img.kuqin.com/upimg/allimg/161222/1224556264-0.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240" itemprop="contentUrl" style="max-height: 300px"/>
</a>
</div>
</div>
<p>随着 PC 市场的逐渐饱和、网络和移动设备性能的不断提升,人们越来越离不开手机等移动设备,手机逐渐成为生活的必需品。据调查显示,中国人花在手机上的时间平均每天 3 小时,居全球第二。Qunar 从 09 年率先布局无线业务至今,移动端一直承担着大量的业务需求,Qunar 移动端项目早已超过了 100 大关,移动端成为 Qunar 业务的主战场。业务产品能否迅速上线、占据市场,高效地开发测试成为重要影响因素之一,那么移动端调试的重要性也就不言而喻了。<br>
<div class="post-more-link text-center">
<a class="btn" href="/2017/07/03/移动前端调试大全/#more" rel="contents">
阅读全文 »
</a>
</div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/05/12/ajax处理302跳转与内容协商/" itemprop="url">
ajax处理302跳转与内容协商
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<!-- 发表于 -->
<span class="iconfont"></span>
<time itemprop="dateCreated" datetime="2016-05-12T00:00:00+08:00" content="2016-05-12">
2016-05-12
</time>
</span>
<span class="post-category" >
|
<!-- 分类于 -->
<span class="iconfont"></span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/技术/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
</span>
</div>
</header>
<div class="post-body">
<p>随着各种前端框架的的蓬勃发展,单页面应用(<code>SPA</code>)无论在移动端的<code>webapp</code>/<code>Hybrid</code>,还是各种PC内部管理系统都有着他们独特的身影。这种无页面刷新切换页面的实现,借助于<code>ajax</code>的异步请求。<br>
<div class="post-more-link text-center">
<a class="btn" href="/2016/05/12/ajax处理302跳转与内容协商/#more" rel="contents">
阅读全文 »
</a>
</div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/05/08/单元测试——Qunit/" itemprop="url">
单元测试——Qunit
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<!-- 发表于 -->
<span class="iconfont"></span>
<time itemprop="dateCreated" datetime="2016-05-08T00:00:00+08:00" content="2016-05-08">
2016-05-08
</time>
</span>
<span class="post-category" >
|
<!-- 分类于 -->
<span class="iconfont"></span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/技术/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
</span>
</div>
</header>
<div class="post-body">
<h2 id="为什么需要单元测试"><a href="#为什么需要单元测试" class="headerlink" title="为什么需要单元测试"></a>为什么需要单元测试</h2><ul>
<li>正确性:测试可以验证代码的正确性,在上线前做到心里有底</li>
<li>自动化:当然手工也可以测试,通过console可以打印出内部信息,但是这是一次性的事情,下次测试还需要从头来过,效率不能得到保证。通过编写测试用例,可以做到一次编写,多次运行</li>
<li>解释性:测试用例用于测试接口、模块的重要性,那么在测试用例中就会涉及如何使用这些API。其他开发人员如果要使用这些API,那阅读测试用例是一种很好地途径,有时比文档说明更清晰</li>
<li>驱动开发,指导设计:代码被测试的前提是代码本身的可测试性,那么要保证代码的可测试性,就需要在开发中注意API的设计,TDD将测试前移就是起到这么一个作用</li>
<li>保证重构:互联网行业产品迭代速度很快,迭代后必然存在代码重构的过程,那怎么才能保证重构后代码的质量呢?有测试用例做后盾,就可以大胆的进行重构
<div class="post-more-link text-center">
<a class="btn" href="/2016/05/08/单元测试——Qunit/#more" rel="contents">
阅读全文 »
</a>
</div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2016/05/07/我不知道的行高——line-height/" itemprop="url">
我不知道的行高——line-height
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<!-- 发表于 -->
<span class="iconfont"></span>
<time itemprop="dateCreated" datetime="2016-05-07T00:00:00+08:00" content="2016-05-07">
2016-05-07
</time>
</span>
<span class="post-category" >
|
<!-- 分类于 -->
<span class="iconfont"></span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/技术/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
</span>
</div>
</header>
<div class="post-body">
<h2 id="概述"><a href="#概述" class="headerlink" title="概述"></a>概述</h2><ul>
<li>对于块级元素,CSS属性line-height指定了元素内部line-boxes的最小高度。</li>
<li>对于非替代行内元素,line-height用于计算line box的高度。</li>
<li>对于替代行内元素,如button 或其他input元素,line-height没有影响
<div class="post-more-link text-center">
<a class="btn" href="/2016/05/07/我不知道的行高——line-height/#more" rel="contents">
阅读全文 »
</a>
</div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
</section>
</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">
<section class="site-overview sidebar-panel sidebar-panel-active ">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/logo.jpeg"
alt="JasonFang" />
<p class="site-author-name" itemprop="name">JasonFang</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">7</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<span class="site-state-item-count">3</span>
<span class="site-state-item-name">分类</span>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">11</span>
<span class="site-state-item-name">标签</span>
</a>
</div>