网络风暴调试?
我最近为我的 html5 / css / javascript 项目安装了 Webstorm。我无法从 IDE 内部成功运行或调试。我有一个典型的 Web 设置,其中包含 index.html 文件以及 css 和 js 文件夹。我正在将 MAMP 用于我的本地 Web 服务器,它在我的浏览器中运行时启动并运行我的网站没有问题。我无法运行,因为“运行”按钮呈灰色。当我尝试调试时(我在一个 js 文件中设置了一个断点,我知道该文件应该预先执行),Firefox 会打开,但只显示 (http://),但没有指向我的 index.html 的完整路径,并且我在 IDE 中看到一条消息:未为“kazaam_localDB.js”指定远程 URL,因此断点在其中不起作用。为“kazaam_localDB.js”设置远程 URL
当我创建“从现有文件创建新项目”时,我确实配置了本地服务器。我确实注意到,我第一次尝试调试一个消息摄像头,说它需要使用附加组件或扩展来配置 Firefox,但我不确定是否成功,因为我无法调试...
I recently installed Webstorm for my html5 / css / javascript project. I have been unable to run or debug sucessfully from inside the IDE. I have a typical web setup with and index.html file and css and js folders. I'm using MAMP for my local web server and it starts and runs my site no problem when run inside my browser. I can't run because the "Run" button is greyed out. When I try to debug (I set a breakppint in a js file that I know should execute up front) Firefox opens but just shows (http://) with no full path to my index.html AND I see a message in the IDE: Remote URL isn't specified for 'kazaam_localDB.js' so breakpoints won't work in it. Set remote URL for 'kazaam_localDB.js
I did configure my local server when I created a "new project from existing files". I did notice the first time I did try to debug a message cam up saying it needed to configure Firefox with an add-on or extension, but I'm not sure that succeeded because I can't debug...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,这是您必须做的:
好的,停止并退出 Firefox,然后从 webstorm 重试调试器。您现在应该看到该扩展已安装在 Firefox 中。
当您在本地文件 WebStorm 的 js 文件中设置断点时,它需要知道哪个 URL 对应于服务器上的该文件。要指定本地文件的 URL 映射,您可以单击警告弹出窗口中的“设置远程 url”链接,或打开“运行 | 运行”。 “编辑配置”对话框并选择“JavaScript 调试”节点下的运行配置。
Ok here is what you have to do:
Ok stop and exit Firefox THEN retry debugger from webstorm. You should now see now the extension has been installed in Firefox.
When you set breakpoint in js file in a local file WebStorm it needs to know which URL corresponds to that file on the server. To specify URL mapping for local files you can either click on 'Set remote url' link in the warning popup or open Run | 'Edit Configurations' dialog and select the run configuration under 'JavaScript Debug' node.