aboutsummaryrefslogtreecommitdiffstats
path: root/openo-portal/portal-performance/src/main/webapp/performance/js/commonUtil.js
blob: d8a544489c48070f5e979e10f0ea982242a1120a (plain)
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
/*
 * Copyright 2016-2017, CMCC Technologies Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
var commonUtil = {};

commonUtil.sendSynRequest = function(url){
	var response;
	$.ajax({
		"type": 'get',
		"url": url,
		"dataType": "json",
		"async": false,
		success: function (resp) {
			response = resp;
			 return response;
		},
		error: function(XMLHttpRequest, textStatus, errorThrown){
		}
	});
};

commonUtil.strToJson = function(str){
	var json = eval('(' + str + ')');
	return json;
};

commonUtil.arrayRemove = function(aryInstance, index){
	if (aryInstance == undefined || aryInstance == null) {
		return;
	}
	for (var i = 0, n = 0; i < aryInstance.length; i++) {
		if (aryInstance[i] != aryInstance[dx]) {
			aryInstance[n++] = aryInstance[i];
		}
	}
	aryInstance.length -= 1;
};

// (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
// (new Date()).Format("yyyy-M-d h:m:s.S")      ==> 2006-7-2 8:9:4.18
commonUtil.parseDate = function(dateObj, format){
	var o = {
		"M+": dateObj.getMonth() + 1,
		"d+": dateObj.getDate(),
		"h+": dateObj.getHours(),
		"m+": dateObj.getMinutes(),
		"s+": dateObj.getSeconds(),
		"q+": Math.floor((dateObj.getMonth() + 3) / 3),
		"S": dateObj.getMilliseconds()
	}
	if (/(y+)/.test(format)) format = format.replace(RegExp.$1,
		(dateObj.getFullYear() + "").substr(4 - RegExp.$1.length));
	for (var k in o)
		if (new RegExp("(" + k + ")").test(format))
			format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] :
				("00" + o[k]).substr(("" + o[k]).length));
	return format;
};

commonUtil.strToJson = function(str){
	var json = eval('(' + str + ')');
	return json;
};