惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tor Project blog
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
G
Google Developers Blog
J
Java Code Geeks
The Cloudflare Blog
Attack and Defense Labs
Attack and Defense Labs
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
Cisco Talos Blog
Cisco Talos Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
I
Intezer
Jina AI
Jina AI
T
Tenable Blog
P
Palo Alto Networks Blog
Project Zero
Project Zero
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
The Hacker News
The Hacker News
F
Full Disclosure
Cloudbric
Cloudbric
量子位
H
Heimdal Security Blog
K
Kaspersky official blog
有赞技术团队
有赞技术团队
罗磊的独立博客
V
Vulnerabilities – Threatpost
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
Recent Announcements
Recent Announcements
WordPress大学
WordPress大学
GbyAI
GbyAI
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
Recorded Future
Recorded Future
Security Archives - TechRepublic
Security Archives - TechRepublic
AI
AI
Webroot Blog
Webroot Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Exploit Database - CXSecurity.com
Apple Machine Learning Research
Apple Machine Learning Research
C
Cybersecurity and Infrastructure Security Agency CISA
H
Hacker News: Front Page
Latest news
Latest news

博客园 - Amwpfiqvy

如何查看执行计划 SQL Server 堆表与栈表的对比(大表) SQL Server中CURD语句的锁流程分析 树表分级统计 SQL:查询购买了所有指定商品的人 在SQL Server中使用正则表达式 查看SQL Server性能时常用的性能计数器 SQL Server中行列转换 Pivot UnPivot Apq本地工具集 Apq.aspx 第一个:_Config.js JScript.Encode.js - Amwpfiqvy - 博客园 Apq.Threading.js - Amwpfiqvy - 博客园 Script/_Config.js Apq.Text.js Apq.js - Amwpfiqvy - 博客园 prototype.js Apq.aspx - Amwpfiqvy - 博客园 查看数据库所有用户表及其列信息
利用JScript的Literal Syntax特性用字符串表示对象
Amwpfiqvy · 2006-04-04 · via 博客园 - Amwpfiqvy

这里说的是JScript对象的字符串表示实现,利用的就是其Literal Syntax特性。
为了统一,我采用方法名为:toJSON,默认实现为无参数(如果你愿意,也可以写点参数的,),意思简单,话就不多说了,看代码:

    /// toJSON --------------------------------------------------------------------------------------------------------------------------------
    /// 用字符串表示对象
    Apq.toJSON = function( o ) {
        
var strClassName = Apq.getClassName( o ).toLowerCase();
        
if( strClassName == "undefined" || strClassName == "null" )
        
{
            
return strClassName;
        }

        
if( strClassName == "system.xml.xmldocument" || strClassName == "system.xml.xmlnode" )
        
{
            
// Xml 相关类
            return o.xml;
        }

        
var args = Function.Args2Ary( arguments, 1 );
        
return o.toJSON.apply( o, args );
    }
;
    
    
/// Object
    Object.prototype.toJSON = function(){
        
return "{}";
    }
;
    
    
/// Array
    Array.prototype.toJSON = function(){
        
var a = [];
        
forvar i = 0; i < this.length; i++ )
        
{
            a.push( Apq.toJSON(
this[i]) );
        }

        
return "" + a.join( "" ) + " ]";
    }
;
    
    Boolean.prototype.toJSON 
= function(){
        
return this.toString.apply( this, arguments );
    }
;
    
    Number.prototype.toJSON 
= function(){
        
if( isFinite( this ) )
        
{
            
return this.toString();
        }

        
else if( isNaN( this ) )
        
{
            
return "NaN";
        }

        
else
        
{
            
return "Number." + (this > 0 ? "POSITIVE_INFINITY" : "NEGATIVE_INFINITY");
        }

    }
;
    
    String.prototype.toJSON 
= function(){
        
var s = this.replace( /(["\\])/g, '\\$1' );
        s = s.replace( /\n/g, 
"\\n" );
        s = s.replace( /\r/g, 
"\\r" );
        return '
"+ s + '"';
    };
    Error.prototype.toJSON = function(){
        return 
"{ number: " + this.number + ", name: " + this.name + ", message: " + this.message + " }";
    };
    RegExp.prototype.toJSON = function(){
        return this.toString.apply( this, arguments );
    };

这里的Apq只是一个普通对象(即new Object() || {}),自己添加下就行了。
Apq.toJSON()只是提供一个统一的调用接口,具体实现则由各自的类负责。
Object.prototype.toJSON()提供一个默认实现,一般不实用(想不出好办法,凑合一下)。
其余是常用类型我已实现的部分,仅供参考。