-
Notifications
You must be signed in to change notification settings - Fork 8
/
jPublic.js
1925 lines (1819 loc) · 59.7 KB
/
jPublic.js
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
/**
* @file js工具库
* @copyright jPublic.js 2020
* @author https://github.com/smltq/jPublic.git
*/
(function () {
// 基线开始
//----------------------
/**
* 获得root,兼容web,微信,note等
*/
var root = (typeof self == 'object' && self.self === self && self) ||
(typeof global == 'object' && global.global === global && global) || this || {};
var ArrayProto = Array.prototype, ObjProto = Object.prototype;
/**
* 为快速访问核心原型创建快速引用变量
*/
var push = ArrayProto.push,
toString = ObjProto.toString,
hasOwnProperty = ObjProto.hasOwnProperty;
/**
* 定义将要实现的 ECMAScript 5 原生方法
*/
var nativeKeys = Object.keys;
var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');
var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString', 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];
/**
* 创建全局对象:_
* @global
* @module _
*/
var _ = function (obj) {
if (obj instanceof _) return obj;
if (!(this instanceof _)) return new _(obj);
this._wrapped = obj;
};
/**
* 当前版本号
* @type {string}
* @default
* @readOnly
* @alias module:_.VERSION
*/
_.VERSION = '1.8.3';
if (typeof exports != 'undefined' && !exports.nodeType) {
if (typeof module != 'undefined' && !module.nodeType && module.exports) {
exports = module.exports = _;
}
exports._ = _;
} else {
root._ = _;
}
// 基线结束
//私有成员开始
//----------------------
var optimizeCb = function (func, context, argCount) {
if (context === void 0) return func;
switch (argCount == null ? 3 : argCount) {
case 1:
return function (value) {
return func.call(context, value);
};
case 3:
return function (value, index, collection) {
return func.call(context, value, index, collection);
};
case 4:
return function (accumulator, value, index, collection) {
return func.call(context, accumulator, value, index, collection);
};
}
return function () {
return func.apply(context, arguments);
};
};
var shallowProperty = function (key) {
return function (obj) {
return obj == null ? void 0 : obj[key];
};
};
var has = function (obj, path) {
return obj != null && hasOwnProperty.call(obj, path);
}
var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;
var getLength = shallowProperty('length');
var isArrayLike = function (collection) {
var length = getLength(collection);
return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX;
};
var builtinIteratee;
var cb = function (value, context, argCount) {
if (_.iteratee !== builtinIteratee) return _.iteratee(value, context);
if (value == null) return _.identity;
if (_.isFunction(value)) return optimizeCb(value, context, argCount);
if (_.isObject(value) && !_.isArray(value)) return _.matcher(value);
return _.property(value);
};
var createAssigner = function (keysFunc, defaults) {
return function (obj) {
var length = arguments.length;
if (defaults) obj = Object(obj);
if (length < 2 || obj == null) return obj;
for (var index = 1; index < length; index++) {
var source = arguments[index],
keys = keysFunc(source),
l = keys.length;
for (var i = 0; i < l; i++) {
var key = keys[i];
if (!defaults || obj[key] === void 0) obj[key] = source[key];
}
}
return obj;
};
};
var collectNonEnumProps = function (obj, keys) {
var nonEnumIdx = nonEnumerableProps.length;
var constructor = obj.constructor;
var proto = _.isFunction(constructor) && constructor.prototype || ObjProto;
//构造函数是一种特殊情况
var prop = 'constructor';
if (has(obj, prop) && !_.contains(keys, prop)) keys.push(prop);
while (nonEnumIdx--) {
prop = nonEnumerableProps[nonEnumIdx];
if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) {
keys.push(prop);
}
}
};
//私有成员结束
//集合函数开始
//---------------
/**
* 生成可应用于集合中的每个元素的回调。<br>
* _.iteratee支持许多常见回调用例的简写语法。<br>
* 根据值的类型,_.iteratee 各种结果
* @param {*} value 迭代值
* @param {Object} context 上下文
* @alias module:_.iteratee
* @method
* @example
* // 空值
* _.iteratee();
* => _.identity()
* // 函数
* _.iteratee(function(n) { return n * 2; });
* => function(n) { return n * 2; }
* // 对象
* _.iteratee({firstName: 'Chelsea'});
* => _.matcher({firstName: 'Chelsea'});
* // 其它
* _.iteratee('firstName');
* => _.property('firstName');
*/
_.iteratee = builtinIteratee = function (value, context) {
return cb(value, context, Infinity);
};
/**
* 返回一个断言函数,这个函数会给你一个断言可以用来辨别给定的对象是否匹配attrs指定键/值属性。
* @param attrs
* @alias module:_.matcher
* @example
* var ready = _.matcher({selected: true, visible: true});
* var readyToGoList = _.filter(list, ready);
*/
_.matcher = function (attrs) {
attrs = _.extendOwn({}, attrs);
return function (obj) {
return _.isMatch(obj, attrs);
};
};
/**
* 类似于 extend, 但只复制自己的属性覆盖到目标对象。(注:不包括继承过来的属性)。
* @type {Function}
* @method
* @alias module:_.extendOwn
* @example
* var a = {
* foo: false
* };
*
* var b = {
* bar: true
* };
* _.extendOwn(a,b)
* =>{ foo: false, bar: true };
*/
_.extendOwn = createAssigner(_.keys);
/**
* 判断properties中的键和值是否包含在object中。
* @param {Object} object 查找目标
* @param {Object} attrs 查找对象
* @alias module:_.isMatch
* @example
* var stooge = {name: 'moe', age: 32};
* _.isMatch(stooge, {age: 32});
* => true
*/
_.isMatch = function (object, attrs) {
var keys = _.keys(attrs), length = keys.length;
if (object == null) return !length;
var obj = Object(object);
for (var i = 0; i < length; i++) {
var key = keys[i];
if (attrs[key] !== obj[key] || !(key in obj)) return false;
}
return true;
};
/**
* 遍历list中的所有元素,按顺序用遍历输出每个元素。<br>
* 如果传递了context参数,则把iteratee绑定到context对象上。<br>
* 每次调用iteratee都会传递三个参数:(element, index, list)。<br>
* 如果list是个JavaScript对象,iteratee的参数是 (value, key, list))。<br>
* 返回list以方便链式调用。<br>
* @param {Object} obj 遍历目标
* @param {Function} iteratee 迭代器
* @param {Object} context 绑定的目标对象
* @alias module:_.each
* @example
* _.each([1, 2, 3], alert);
* => 依次提示每个数字...
* _.each({one: 1, two: 2, three: 3}, alert);
* => 依次提示每个数字...
*/
_.each = function (obj, iteratee, context) {
iteratee = optimizeCb(iteratee, context);
var i, length;
if (isArrayLike(obj)) {
for (i = 0, length = obj.length; i < length; i++) {
iteratee(obj[i], i, obj);
}
} else {
var keys = _.keys(obj);
for (i = 0, length = keys.length; i < length; i++) {
iteratee(obj[keys[i]], keys[i], obj);
}
}
return obj;
};
//集合函数结束
//通用函数开始
//---------------
/**
* 返回一个对象里所有的方法名, 而且是已经排序的 — 也就是说, 对象里每个方法(属性值是一个函数)的名称.
* @param {Object} obj 查找对象
* @returns {this}
* @alias module:_.functions
* @example
* _.functions(_);
* => ["arrayDiff", "arrayEquals", "arrayIsRepeat", "clone", "debounce", "defineColor" ...
*/
_.functions = function (obj) {
var names = [];
for (var key in obj) {
if (_.isFunction(obj[key])) names.push(key);
}
return names.sort();
};
/**
* 获得当前Url参数值
* @param {String} name 参数名
* @returns {string|null}
* @alias module:_.getUrlParam
*/
_.getUrlParam = function (name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) {
return decodeURIComponent(r[2]);
}
return null;
};
/**
* 函数去抖,空闲时间大于或等于wait,执行fn
* @param {Function} fn 要调用的函数
* @param {Integer} wait 延迟时间(单位毫秒)
* @param {Boolean} immediate 给immediate参数传递false绑定的函数先执行,而不是wait之后执行
* @returns 实际调用函数
* @alias module:_.debounce
* @example
* var lazyLayout = _.debounce(calculateLayout, 300);
* $(window).resize(lazyLayout);
*/
_.debounce = function (fn, wait, immediate) {
var timeout;
return function () {
var context = this, args = arguments;
var later = function () {
timeout = null;
if (!immediate) fn.apply(context, args);
};
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) fn.apply(context, args);
}
};
/**
* 函数节流 每wait时间间隔,执行fn
* @param {Function} fn 要调用的函数
* @param {Integer} wait 延迟时间,单位毫秒
* @param {Object} scope scope代替fn里this的对象
* @returns {Function} 实际调用函数
* @alias module:_.throttle
* @example
* var throttled = _.throttle(updatePosition, 100);
* $(window).scroll(throttled);
*/
_.throttle = function (fn, wait, scope) {
wait || (wait = 250);
var last, deferTimer;
return function () {
var context = scope || this;
var now = _.now(), args = arguments;
if (last && now < last + wait) {
clearTimeout(deferTimer);
deferTimer = setTimeout(function () {
last = now;
fn.apply(context, args);
}, wait);
} else {
last = now;
fn.apply(context, args);
}
};
};
/**
* 函数只执行一次
* @param {Function} fn 要执行的函数
* @param {Object} context 上下文
* @returns {function(): *}
* @alias module:_.runOnce
* @example
* var a = 0;
* var canOnlyFireOnce = runOnce(function () {
* a++;
* console.log(a);
* });
* canOnlyFireOnce(); =>1
* canOnlyFireOnce(); => nothing
* canOnlyFireOnce(); => nothing
*/
_.runOnce = function (fn, context) {
var result;
return function () {
if (fn) {
result = fn.apply(context || this, arguments);
fn = null;
}
return result;
};
};
/**
* 轮询条件函数,根据状态执行相应回调
* @param {Function} fn 条件函数
* @param {Function} callback 成功回调
* @param {Function} errback 失败回调
* @param {Integer} timeout 超时间隔(毫秒)
* @param {Integer} interval 轮询间隔(毫秒)
* @alias module:_.poll
* @example
* 确保元素可见
* poll(
* function () {
* return document.getElementById('lightbox').offsetWidth > 0;
* },
* function () {
* // Done, success callback
* },
* function () {
* // Error, failure callback
* }
* );
*/
_.poll = function (fn, callback, errback, timeout, interval) {
var endTime = Number(new Date()) + (timeout || 2000);
interval = interval || 100;
(function p() {
// 如果条件满足,调用回调
if (fn()) {
callback();
}
//如果在结束时间内,继续进入循环判断
else if (Number(new Date()) < endTime) {
setTimeout(p, interval);
}
//超时,抛出异常
else {
errback(new Error('timed out for ' + fn + ': ' + arguments));
}
})();
};
/**
* 返回一个min 和 max之间的随机整数。<br>
* 如果你只传递一个参数,那么将返回0和这个参数之间的整数
* @param min 随机数下限,没传默认为0
* @param max 随机数上限
* @returns {number}
* @alias module:_.getRandom
* @example
* _.random(0, 100);
* => 48
*/
_.getRandom = function (min, max) {
if (max == null) {
max = min;
min = 0;
}
return min + Math.floor(Math.random() * (max - min + 1));
};
/**
* 获取表单数据
* @param {Object} frm 表单对象
* @alias module:_.getFormJson
* @example
* 获得表单数据,自动拼接成json对象,提交给服务端
* $.ajax({
* type: 'post',
* url: 'your url',
* data: _.getFormJson($('#formId')),
* success: function(data) {
* // your code
* }
* });
*/
_.getFormJson = function (frm) {
var o = {};
var a = frm.serializeArray();
_.each(a, function () {
o[this.name] = this.value;
});
return o;
};
/**
* 复制文本到剪切板(适用于Chrome、Firefox、Internet Explorer和Edge,以及Safari)
* @alias module:_.copyToClipboard
*/
_.copyToClipboard = function (text) {
if (window.clipboardData && window.clipboardData.setData) {
return clipboardData.setData("Text", text);
} else if (document.queryCommandSupported && document.queryCommandSupported("copy")) {
var textarea = document.createElement("textarea");
textarea.textContent = text;
textarea.style.position = "fixed";
document.body.appendChild(textarea);
textarea.select();
try {
return document.execCommand("copy");
} catch (ex) {
console.warn("复制到剪贴板异常:", ex);
return false;
} finally {
document.body.removeChild(textarea);
}
}
};
/**
* 定义操作列
* @param {Array} arr 一个数组
* @param {Integer} value 对应行的id值
* @returns {string} 返回html字符串
* @alias module:_.defineOperate
*
* @example
* var arr = [
* { text: "删除", fn: "detailDataGrid.Delete({0})" },
* {text: "修改", fn: "detailDataGrid.Edit({0})" }]
* _.defineOperate(arr,3)
* =><a style='cursor: pointer;' onclick='detailDataGrid.Delete(3)' href='javascript:;'>删除</a> | <a style='cursor: pointer;' onclick='detailDataGrid.Edit(3)' href='javascript:;'>修改</a>
*/
_.defineOperate = function (arr, value) {
var str = "";
var len = arr.length, i = 0;
while (i < len) {
str += _.format("<a style='cursor: pointer;' onclick='{1}' href='javascript:;'>{0}</a>", arr[i].text, _.format(arr[i].fn, value));
str += (i == len - 1 ? "" : " | ");
i++;
}
return str;
};
/**
* 获取当前网站根路径
* @returns {string}
* @alias module:_.getRootPath
* @example
* http://localhost:8083/tqlin
*/
_.getRootPath = function () {
var curPath = window.document.location.href;
var pathName = window.document.location.pathname;
var pos = curPath.indexOf(pathName);
var localhostPaht = curPath.substring(0, pos);
var projectName = pathName.substring(0, pathName.substr(1).indexOf('/') + 1);
return (localhostPaht + projectName);
};
/**
* 格式化字符串
* @param {String} format 要格式化的字符串
* @returns {string | void}
* @returns {string}
* @alias module:_.format
* @example
* _.format("Hello, {0}!","World")=>Hello, World
* _.format("Hello, {0}, My {1}!","World","Love You")=>Hello, World, My Love You
*/
_.format = function (format) {
var args = Array.prototype.slice.call(arguments, 1);
return format.replace(/{(\d+)}/g, function (match, number) {
return typeof args[number] != 'undefined' ? args[number] : match;
});
};
/**
* 去左右空格
* @param {String} str 字符串
* @param {String} chars 要移除的字符(默认为空白字符)
* @returns {string}
* @alias module:_.trim
* @example
* _.trim(" Hello ")=>"Hello"
* _.trim("_Hello_","_")=>"Hello"
*/
_.trim = function (str, chars) {
return this.ltrim(this.rtrim(str, chars), chars);
};
/**
* 去左空格
* @param {String} str 字符串
* @param {String} chars 要移除的字符(默认为空白字符)
* @returns {string}
* @alias module:_.ltrim
* @example
* _.ltrim(" Hello ")=>"Hello "
* _.ltrim("_Hello_","_")=>"Hello_"
*/
_.ltrim = function (str, chars) {
chars = chars || "\\s";
return str.replace(new RegExp("^[" + chars + "]+", "g"), "");
};
/**
* 去右空格
* @param str 字符串
* @param chars 要移除的字符(默认为空白字符)
* @returns {string}
* @alias module:_.rtrim
* @example
* _.ltrim(" Hello ")=>" Hello"
* _.ltrim("_Hello_","_")=>"_Hello"
*/
_.rtrim = function (str, chars) {
chars = chars || "\\s";
return str.replace(new RegExp("[" + chars + "]+$", "g"), "");
};
/**
* 如果obj是一个函数(Function),返回true。
* @param {Object} obj 要检查的对象
* @returns {boolean}
* @alias module:_.isFunction
* @example
* _.isFunction(alert);
* => true
*/
_.isFunction = function (obj) {
return typeof obj == 'function' || false;
};
/**
* 如果object是一个对象,返回true。需要注意的是JavaScript数组和函数是对象,字符串和数字不是。
* @param {Object} obj 要检查的对象
* @returns {boolean}
* @alias module:_.isObject
* @example
* _.isObject({});
* => true
* _.isObject(1);
* => false
*/
_.isObject = function (obj) {
var type = typeof obj;
return type === 'function' || type === 'object' && !!obj;
};
/**
* 是否为日期对象,参数支持Date和String类型
* @param {Object} date 要检查的对象
* @returns {boolean}
* @alias module:_.isValidDate
* @version 1.8.3
* @example
* _.isValidDate("2019-5-5a");
* =>false
* _.isValidDate("2019-5-5");
* =>true
*_.isValidDate(new Date("2019-5-5a"));
* =>false
*/
_.isValidDate = function (date) {
return !!(Object.prototype.toString.call(date) === "[object Date]" && +date);
}
/**
* 是否为空字符串
* @param {String} str 要检查的字符串
* @returns {boolean}
* @alias module:_.isNullOrEmpty
* @example
* _.isNullOrEmpty(" ");
* =>true
*
* .isNullOrEmpty(' ');
* =>true
*
* var student = {className: "测试班", name: "我是张三", age: 18};
* _.isNullOrEmpty(student.skill);
* =>true
*
* _.isNullOrEmpty(undefined);
* =>true
*
* _.isNullOrEmpty(null);
* =>true
*
* _.isNullOrEmpty("");
* =>true
*
* _.isNullOrEmpty('')
* =>true
*/
_.isNullOrEmpty = function (str) {
if (!str || _.trim(str) === '') {
return true;
}
return false;
};
/**
* 如果object 不包含任何值(没有可枚举的属性),返回true。
* 对于字符串和类数组(array-like)对象,如果length属性为 0,那么_.isEmpty检查返回true。
* @param {Object} obj 要检查的对象
* @returns {boolean}
* @example
* _.isEmpty([1, 2, 3]);
* => false
* _.isEmpty({});
* => true
*/
_.isEmpty = function (obj) {
if (obj == null) return true;
if (isArrayLike(obj) && (_.isArray(obj) || _.isArguments(obj))) return obj.length === 0;
if (_.isString(obj)) return _.isNullOrEmpty(obj);
return _.keys(obj).length === 0;
};
/**
* 如果obj是一个数组,返回true。
* @param {Object} obj 要检查的对象
* @returns {boolean}
* @alias module:_.isArray
* @example
* (function(){ return _.isArray(arguments); })();
* => false
* _.isArray([1,2,3]);
* => true
*/
_.isArray = function (obj) {
return toString.call(obj) === '[object Array]';
};
/**
* 是否数值
* @param {Object} value 要检查的对象
* @returns {boolean}
* @alias module:_.isNumeric
* @example
* // true
* _.isNumeric( "-10" )
* _.isNumeric( "0" )
* _.isNumeric( 0xFF )
* _.isNumeric( "0xFF" )
* _.isNumeric( "8e5" )
* _.isNumeric( "3.1415" )
* _.isNumeric( +10 )
* _.isNumeric( 0144 )
// false
* _.isNumeric( "-0x42" )
* _.isNumeric( "7.2acdgs" )
* _.isNumeric( "" )
* _.isNumeric( {} )
* _.isNumeric( NaN )
* _.isNumeric( null )
* _.isNumeric( true )
* _.isNumeric( Infinity )
* _.isNumeric( undefined )
*/
_.isNumeric = function (value) {
return !isNaN(parseFloat(value)) && isFinite(value);
};
/**
* 如果object是一个字符串,返回true。
* @param {String} value 要检查的值
* @returns {boolean}
* @alias module:_.isString
* @example
* _.isString("moe");
* => true
*/
_.isString = function (value) {
return typeof value === 'string';
};
/**
* 如果object是一个参数对象,返回true。
* @param {Object} obj 要检查的对象
* @example
* (function(){ return _.isArguments(arguments); })(1, 2, 3);
* => true
* _.isArguments([1,2,3]);
* => false
* @returns {*}
*/
_.isArguments = function (obj) {
return has(obj, 'callee');
};
/**
* 截取字符串
* @param {String} str 原始字符串
* @param {Integer} limit 长度限制(默认限制长度100)
* @param {String} suffix 超过替换字符(默认用'...'替代)
* @returns {string|*}
* @alias module:_.truncate
* @example
* _.truncate('We are doing JS string exercises.')
* =>We are doing JS string exercises.
*
* _.truncate('We are doing JS string exercises.',19)
* =>We are doing JS ...
*
* _.truncate('We are doing JS string exercises.',15,'!!')
* =>We are doing !!
*/
_.truncate = function (str, limit, suffix) {
limit = limit || 100;
if (_.isString(str)) {
if (typeof suffix !== 'string') {
suffix = '...';
}
if (str.length > limit) {
return str.slice(0, limit - suffix.length) + suffix;
}
return str;
}
};
/**
* 金额格式化
* @param {Number} value 原始金额数值
* @param {Integer} digit 保留小数位置(默认2位)
* @returns {string}
* @alias module:_.fmoney
* @example
* _.fmoney(100000000)
* =>100,000,000.00
*
* _.fmoney(100000000.3434343, 3)
* =>100,000,000.343
*/
_.fmoney = function (value, digit) {
digit = digit > 0 && digit <= 20 ? digit : 2;
if (typeof (value) == "undefined" || (!value && value != 0)) {
return '';
}
value = parseFloat((value + "").replace(/[^\d\.-]/g, "")).toFixed(digit) + "";
var ss = value.split(".");
var r = ss[1];
ss[0] = ss[0].replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,")
return ss[0] + "." + r.substring(0, digit);
};
/**
* 定义文字颜色
* @param {String} value 原始文字
* @param {String} color 要定义的颜色(默认红色)
* @returns {string}
* @alias module:_.defineColor
* @example
* _.defineColor(“Hello”)
* =><span style="color:#FF0000">Hello</span>
*/
_.defineColor = function (value, color) {
return '<span style="color:' + (color || "#FF0000") + '">' + value + "</span>";
};
/**
* 字节格式化
* @param {Number} bytes 字节值
* @param {Integer} decimals 小数位数
* @returns {string}
* @alias module:_.formatBytes
* @example
* formatBytes(1024);
* =>1 KB
*
* formatBytes('1024');
* =>1 KB
*
* formatBytes(1234);
* =>1.21 KB
*
* formatBytes(1234, 3);
* =>1.205 KB
*/
_.formatBytes = function (bytes, decimals) {
if (bytes == 0) return '0 Bytes';
var k = 1024,
dm = decimals <= 0 ? 0 : decimals || 2,
sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i];
}
/**
* 如果list中的所有元素都通过predicate的真值检测就返回true。<br>
* (注:如果存在原生的every方法,就使用原生的every。)<br>
* predicate 通过 iteratee 进行转换,以简化速记语法。
* @param {Array} list 要检查的列表
* @param {Function} predicate 检测函数
* @param {Object} context 上下文
* @returns {boolean}
* @alias module:_.every
* @example
* _.every([2, 4, 5], function(num) { return num % 2 == 0; });
* => false
*/
_.every = function (list, predicate, context) {
predicate = cb(predicate, context);
var keys = !isArrayLike(list) && _.keys(list),
length = (keys || list).length;
for (var index = 0; index < length; index++) {
var currentKey = keys ? keys[index] : index;
if (!predicate(list[currentKey], currentKey, list)) return false;
}
return true;
};
/**
* 如果list中有任何一个元素通过 predicate 的真值检测就返回true。<br>
* 一旦找到了符合条件的元素, 就直接中断对list的遍历。<br>
* predicate 通过 iteratee 进行转换,以简化速记语法。
* @param {Array} list 要检查的列表
* @param {Function} predicate 检测函数
* @param {Object} context 上下文
* @returns {boolean}
* @alias module:_.some
* @example
* _.some([null, 0, 'yes', false]);
* => true
*/
_.some = function (list, predicate, context) {
predicate = cb(predicate, context);
var keys = !isArrayLike(list) && _.keys(list),
length = (keys || list).length;
for (var index = 0; index < length; index++) {
var currentKey = keys ? keys[index] : index;
if (predicate(list[currentKey], currentKey, list)) return true;
}
return false;
};
/**
* 一个用来创建整数灵活编号的列表的函数,便于each 和 map循环。<br>
* 如果省略start则默认为 0;<br>
* step 默认为 1.返回一个从start 到stop的整数的列表,用step来增加 (或减少)独占。<br>
* 值得注意的是,如果stop值在start前面(也就是stop值小于start值),那么值域会被认为是零长度,而不是负增长。-如果你要一个负数的值域 ,请使用负数step.
* @param {Integer} start 开始位置
* @param {Integer} stop 结束位置
* @param {Integer} step 步长
* @returns {any[]}
* @alias module:_.range
* @example
* _.range(10);
* => [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
* _.range(1, 11);
* => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
* _.range(0, 30, 5);
* => [0, 5, 10, 15, 20, 25]
* _.range(0, -10, -1);
* => [0, -1, -2, -3, -4, -5, -6, -7, -8, -9]
* _.range(0);
* => []
*/
_.range = function (start, stop, step) {
if (stop == null) {
stop = start || 0;
start = 0;
}
if (!step) {
step = stop < start ? -1 : 1;
}
var length = Math.max(Math.ceil((stop - start) / step), 0);
var range = Array(length);
for (var idx = 0; idx < length; idx++, start += step) {
range[idx] = start;
}
return range;
};
/**
* 检索object拥有的所有可枚举属性的名称。
* @param {Object} obj 要检索的对象
* @returns {Array|*}
* @alias module:_.keys
* @example
* _.keys({one: 1, two: 2, three: 3});
* => ["one", "two", "three"]
*/
_.keys = function (obj) {
if (!_.isObject(obj)) return [];
if (nativeKeys) return nativeKeys(obj);
var keys = [];
for (var key in obj) if (has(obj, key)) keys.push(key);
// Ahem, IE < 9.
if (hasEnumBug) collectNonEnumProps(obj, keys);
return keys;
};
/**
* 创建 一个浅复制(浅拷贝)的克隆object。任何嵌套的对象或数组都通过引用拷贝,不会复制。
* @param {Object} obj 要克隆的对象
* @returns {*|_|*}
* @alias module:_.clone
* @example
* _.clone({name: 'moe'});
* => {name: 'moe'};
*/
_.clone = function (obj) {
if (!_.isObject(obj)) return obj;
return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
};
_.templateSettings = {
evaluate: /<%([\s\S]+?)%>/g,
interpolate: /<%=([\s\S]+?)%>/g,
escape: /<%-([\s\S]+?)%>/g
};
//通用函数结束
//日期相关开始
//-----------------------
/**
* 获取当前时间戳,兼容旧环境(毫秒)
* @method
* @alias module:_.now
* @example
* _.now()
* =>521557891109615
*/
_.now = Date.now || function () {
return new Date().valueOf();
};