PyCharm: Debug Javascript in Django Template

I cannot figure out how to debug javascript, using PyCharm, in a Django template.

When I attempt to debug a template -- by using the context menu item Debug while in the template -- the debugger launches, chromium launches, and I see the following error message in the PyCharm debugger console:

GET http://localhost:8000/login net::ERR_CONNECTION_REFUSED

Needless to say nothing shows up in the chromium window.

I've seen hints that I'm supposed to "open the generated file" from within the PyCharm debugger scripts tab. But since chromium isn't loading anything there's nothing to open.

I have the JetBrains chromium debugger installed and, so far as I can tell, running.

What's the procedure for debugging javascript in a Django template from within PyCharm?


Why not using a browser tool like firebug in browser or google chome debugging tools (depending on the browser you use), If your code is client side, since I assume that the server side part of the application is written in python scripts it's the easiest solution. I have also used JSDT in eclipse but it was not as convenient.

For the error you posted I think it's server-side error, check your views.py or an example from the django tutorial.

链接地址: http://www.djcxy.com/p/44950.html

上一篇: 使用Webstorm调试Django项目的javascript部分

下一篇: PyCharm:在Django模板中调试Javascript