我有一个由 JSON.Stringify 函数从对象转换的 json 字符串。
我想知道它是json字符串还是普通字符串。
有没有像“isJson()”这样的函数来检查它是否是 json?
当我像下面的代码一样使用本地存储时,我想使用该功能。
先感谢您!!
var Storage = function(){}
Storage.prototype = {
setStorage: function(key, data){
if(typeof data == 'object'){
data = JSON.stringify(data);
localStorage.setItem(key, data);
} else {
localStorage.setItem(key, data);
}
},
getStorage: function(key){
var data = localStorage.getItem(key);
if(isJson(data){ // is there any function to check if the argument is json or string?
data = JSON.parse(data);
return data;
} else {
return data;
}
}
}
var storage = new Storage();
storage.setStorage('test', {x:'x', y:'y'});
console.log(storage.getStorage('test'));