1

我刚刚开始做 js 开发,我在服务器端、XAML 等方面的经验。我习惯于智能和良好的调试体验。

现在我在挣扎。在 VS2012 中使用 javascript 调试 asp.net 的最佳组合是什么?我正在使用 jQuery。我想保存调试断点,然后像往常一样编辑/启动/调试/停止/编辑/启动...。

现在当我有 VS 调试器时,它会缓存 js 文件,它真的不起作用。我必须在每次重新启动时清除浏览器缓存。像这样工作是真正的 PITA。F12 工具也不是很好。每次重新启动应用程序时,我都必须找到我需要的 js 并设置断点。

有经验的人,对减轻疼痛有什么帮助吗?

4

1 回答 1

0

You can use VS2012 to debug the JS by adding the breakpoints as usual then attaching to the IE process after allowing access to debug JS in IE through the settings. That will let you step through the JS as you would code when debugging as normal

Guide (old but still works the same): http://www.codeproject.com/Articles/18921/Using-Visual-Studio-to-Debug-JavaScript-in-IE

于 2013-03-24T17:57:44.433 回答