当前位置:  开发笔记 > 编程语言 > 正文

Javascript toSource()方法不起作用

如何解决《JavascripttoSource()方法不起作用》经验,为你挑选了3个好方法。

我得到一个"对象不支持此属性或方法错误",有谁知道为什么?

我确实将值插入到userId,fname,lname,oname,sam,hasAccess中

function Employee(id, fname, lname, oname, sam, access) {
    this.id = id;
    this.fname = fname;
    this.lname = lname;
    this.oname = oname
    this.sam = sam;
    this.access = access;
}

var emp = new Employee(userId, fname, lname, oname, sam, hasAccess);

var jsonstuff = emp.toSource(); //Breaking here

虽然这个链接说它可能是http://www.w3schools.com/jsref/jsref_toSource_date.asp



1> John Kugelma..:

toSource()在Internet Explorer或Safari中不起作用.它只是Gecko.请参阅在Internet Explorer中实现Mozilla的toSource()方法以获取替代方法.


+1提及Safari!浏览器世界不仅仅是Firefox和IE.

2> Prestaul..:

请尝试使用JSON序列化程序. toSource是Mozilla特定的,IE不支持.

如果你只是调试那么你最好的选择是安装Firebug并使用console.dir(emp); 将对象的内容打印到控制台窗口.

更新:请注意,在您发布的链接上说:"注意:此方法在Internet Explorer中不起作用!" 在MDC页面上,它显示"非标准".


试试`alert(JSON.stringify(obj))`

3> Josh Stodola..:

你可以改为调用toString,或者放入这样的条件......

var jsonstuff = (emp.toSource) ? emp.toSource() : emp.toString();

编辑:

由于这不适合您,您可能希望使用JSON.stringify()

推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有