- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
uneval(...)
和 .toSource()
有什么区别?
The toSource() method returns a string representing the source code of the object.
The uneval() method creates an string representation of the source code of an Object.
最佳答案
一个接受参数,另一个不接受。这似乎是唯一的区别,尽管不鼓励同时使用两者。
uneval(object);
Object.toSource();
obj.toSource();
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/uneval https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/toSource
直接来自上述网站:
Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
我会远离这个功能。可能有更好的方法来完成您想要做的事情。
关于javascript - uneval() 和 .toSource() 有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20802045/
我收到“对象不支持此属性或方法错误”,有人知道为什么吗? 我确实在 userId、fname、lname、oname、sam、hasAccess 中插入了值 function Employee(id,
当我调用 response.toSource() 对 google 电子表格进行查询时,我得到以下信息。 ({ ej: "0.6", Oe: "ok", gb: [],
显然有一个非标准的方法 Array , toSource .根据示例.. var alpha = new Array('a', 'b', 'c'); alpha.toSource(); // ['
当toSource方法用于一个对象时..它会是这样的 ({name:"myname", value:"myvalue"}) 我的问题是如何将它转换回对象?或者更确切地说,只是访问像这样的属性 aler
我正在使用 dynarch 日历,我希望将选定的日期范围转换为字符串,就像 firefox 的 toSource() 那样。 二维数组转源码示例: [20110917, [20110920, 2011
uneval(...) 和 .toSource() 有什么区别? The toSource() method returns a string representing the source code
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicates: Javascript toSource() method not working Implementing
如果我将一个简单的 JavaScript 对象转换为字符串,所有特殊字符都将转换为十六进制代码。 function O() { this.name = "<üäö!"; } var myObj
我需要将 javascript 对象传递给 ASP.NET MVC,我想这样做: var p = { account:'123', page:'item' }; var message = escap
我对下面的脚本有疑问。我在 Chrome 中收到 toSource is not Defined 错误,并发现 toSource()是 Firefox 特有的。我尝试了 JSON.stringify(
我将 js 字符串解析为抽象语法树,然后更改 StringLiteral 节点的值,并且需要将整个 Ast 内容写回字符串。但是当我使用 toSource 方法时,StringLiterals 值中的
有人为 Internet Explorer 和其他非 Gecko 浏览器实现了 Mozilla 的 Object.toSource() 方法吗?我正在寻找一种将简单对象序列化为字符串的轻量级方法。 最
我是一名优秀的程序员,十分优秀!