You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
413 B
22 lines
413 B
2 years ago
|
module.exports = {
|
||
|
error:'',
|
||
|
isJSON : function (str){
|
||
|
if (typeof str == 'string') {
|
||
|
try {
|
||
|
var obj=JSON.parse(str);
|
||
|
if(typeof obj == 'object' && obj ){
|
||
|
return true;
|
||
|
}else{
|
||
|
return false;
|
||
|
}
|
||
|
} catch(e) {
|
||
|
console.log('error:'+str+'!!!'+e);
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
isNumber : function (checkVal){
|
||
|
var reg = /^-?[1-9][0-9]?.?[0-9]*$/;
|
||
|
return reg.test(checkVal);
|
||
|
}
|
||
|
}
|