JavaScript對象也玩序列化和還原序列化

來源:互聯網
上載者:User

    前些天說過關於JavaScript的Literal Syntax問題,覺得挺有意思的,於是又研究了一下,能不能把對象再轉化為Literal形式呢?就像我們平時說的序列化和還原序列化啥的。當然可以了,因為JavaScript對象自身都提供了一個toString()方法,預設就是返回簡單對象的Literal形式。

    我們需要作的就是判斷對象的具體類型,然後分別Serialize每種對象,再輸出為Object的Literal文法形式就行了。準確的判斷物件類型,使用我曾經說過的__typeof__方法就行了,序列化對象執行個體的代碼如下:

Object.prototype.Serialize = function()
{
    var type = __typeof__(this);
    switch(type)
    {
         case 'Array' :
         {
              var strArray = '['; 
              for ( var i=0 ; i < this.length ; ++i )
              {
                   var value = ''; 
                   if ( this[i] )
                   {
                        value = this[i].Serialize();
                   }
                   strArray += value + ',';
              }
              if ( strArray.charAt(strArray.length-1) == ',' )
              {
                   strArray = strArray.substr(0, strArray.length-1);
              }
              strArray += ']';  
              return strArray;
         }
         case 'Date' :
         {
              return 'new Date(' + this.getTime() + ')';
         }
         case 'Boolean' :
         case 'Function' :
         case 'Number' :
         case 'String' :
         {
              return this.toString();
         }
         default :
         {
              var serialize = '{'; 
              for ( var key in this )
              {
                   if ( key == 'Serialize' ) continue; 
                   var subserialize = 'null';
                   if ( this[key] != undefined )
                   {
                        subserialize = this[key].Serialize();
                   }
                   serialize += '\r\n' + key + ' : ' + subserialize + ',';
              }
              if ( serialize.charAt(serialize.length-1) == ',' )
              {
                   serialize = serialize.substr(0, serialize.length-1);
              }
              serialize += '\r\n}';
              return serialize;
         }
    }
};

    其實就是Array和Object的屬性比較的麻煩,需要遞迴的做這個Serialize操作。不過需要注意,Serialize方法就不需要被序列化出來了。下面是測試樣本,不過這個序列化方法沒有對環狀引用做檢查,能序列化的對象很有限。

var obj1 = []; 
alert(obj1.Serialize());

var obj2 = [1,[2,[3,[4,[5,[6,[7,[8,[9,[0]]]]]]]]]];
alert(obj2.Serialize());

var obj3 = 
    {
         Properties1 : 1, Properties2 : '2', Properties3 : [3],
         Method1 : function(){ return this.Properties1 + this.Properties3[0];},
         Method2 : function(){ return this.Preperties2; }
    };
alert(obj3.Serialize());  

var obj4 = [null, 1, 'string', true, function(){return 'keke';}, new Object()];
alert(obj4.Serialize());

    至於還原序列化就非常的容易了,把上面的序列化結果用eval執行一下,就得到類執行個體了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.