在 Google Chrome 开发者工具中显示日期对象的值
检查脚本的日期变量以查看其值时,是否可以在 Google Chrome 的开发人员工具(开发人员 -> 开发人员工具或 ctrl+shift+i)中进行检查?
例如, Google Chrome:
end_date: Date
start_date: Date
Firefox:
end_date: Mon Nov 01 2010 00:00:00 GMT+0200 {}
start_date: Fri Oct 01 2010 00:00:00 GMT+0300 {}
这个问题可以在 Chrome 中通过添加新的 watch 来解决: date_object.toString() 但这不太方便,也许还有其他方法?
更新:抱歉,我没有在原始问题中指定它 - 日期未显示在“监视表达式”、“范围变量”部分的“脚本”选项卡上。
Is it possible in Google Chrome's Developer Tools (Developer -> Developer Tools or ctrl+shift+i) when inspecting script's date variables to see their values?
For example,
Google Chrome:
end_date: Date
start_date: Date
Firefox:
end_date: Mon Nov 01 2010 00:00:00 GMT+0200 {}
start_date: Fri Oct 01 2010 00:00:00 GMT+0300 {}
This problem can be solved in Chrome by adding new watch:
date_object.toString()
but that is not really convenient, maybe there is some other way?
Update: Sorry i didn't specify it in the original question - date is not displayed on the Scripts tab in the 'Watch expressions', 'Scope variables' sections.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不太明白你的问题。
正如我所看到的,调试器正在以您想要的格式显示日期。
您能否为您的问题提供一个用例。
I'm not quite understand your question.
As I can see the debugger is showing the Date in format you want.
Could you please provide a use case for your problem.
WebKit 有一个 bug(同样是在 2011 年 11 月 5 日):
https://bugs.webkit.org/show_bug.cgi?id=71605
所以只需将“.toString()”添加到监视变量即可:
There is a WebKit's bug (again at 2011-11-05):
https://bugs.webkit.org/show_bug.cgi?id=71605
So just add ".toString()" to a watching variable: