问题描述
更新到52.0a2后,我不能在JavaScript调试器创建我自己的表达式,添加手表等。当我右键点击一些变量,我用来从上下文菜单中选择添加文本来观看表达,但在最新版本丢失。我必须启用某些?感谢
Firefox Developer Edition 52.0a2中的 Debugger 面板实际上是一个。
所以,如果你需要监视表达式,您需要等到新的调试器面板中重新实现该功能,或者您可以通过设置首选项 devtools.debugger.new来切换到旧的UI在中的-debugger-frontend
false
。
After update to 52.0a2 and i am not able at javascript debugger create my own expressions, add watch etc. When i right click some variable i used to just select from context menu "add text to watch expression", but in newest version its missing. Do i have to enable someting?
thanks
The Debugger panel in the Firefox Developer Edition 52.0a2 is actually an external project reworked from scratch, which doesn't have all features of the original Debugger panel yet.
The watch expressions are obviously not enabled yet due to some issues.
So, if you need watch expressions, you either need to wait until the feature is reimplemented in the new Debugger panel, or you can switch to the old UI by setting the preference devtools.debugger.new-debugger-frontend
in about:config to false
.
这篇关于Firefox开发者版缺少添加监视功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!