JSON.Stringify関数によってオブジェクトから変換されたjson文字列があります。
それがjson文字列なのか、通常の文字列なのか知りたいです。
jsonかどうかを確認する「isJson()」のような関数はありますか?
以下のコードのようにローカルストレージを利用する際に利用したい機能です。
前もって感謝します!!
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'));