当使用 Pydev 插件选择运行或调试时,如何配置 Eclipse 以启动浏览器
我正在使用 Eclipse Pydev 插件学习 Python 和 Django.当我按下运行或调试时,我希望内部或外部浏览器使用 URL http:/127.0.0.1 启动或刷新.我已经看到它是用 PHP 插件完成的,但不是 Pydev.
I'm learning Python and Django using the Eclipse Pydev plugin. I want the internal or external browser to launch or refresh with the URL http:/127.0.0.1 when I press Run or Debug. I've seen it done with the PHP plugins but not Pydev.
推荐答案
以下是设置外部启动配置以启动 IE 的步骤:
Here are the steps to set up an external launch configuration to launch IE:
- 选择运行->外部工具->外部工具配置...
- 在左侧窗格中,选择 Program,然后选择新图标(窗格上方最左侧的图标).
- 在右侧窗格中,选择主选项卡.
- 在 名称: 字段中输入 launch_ie.
- 在 Location: 字段中输入 ${system_path:explorer.exe}.
- 在 Arguments 字段中输入 http:/127.0.0.1.
- 要运行外部配置,请选择运行.
- Select Run->External Tools->External Tools Configurations...
- In the left hand pane, select Program then the new icon (left-most icon above the pane).
- In the right hand pane, select the Main tab.
- Enter launch_ie in the Name: field.
- Enter ${system_path:explorer.exe} in the Location: field.
- Enter http:/127.0.0.1 in the Arguments field.
- To run the external configuration, select Run.
如果您想共享配置,您可以使用以下可选步骤:
If you want to share the configuration you can use these optional steps:
- 选择常用标签
- 在另存为部分中选择共享文件:选项.
- 选择保存配置的位置(将其保存到其他空项目中可能是个好主意,因为您可以将其导入另一个工作区)
要重新运行配置,您有几个选择:
To rerun the configuration you have a few choices:
- 从菜单栏中选择外部工具图标 然后点击 launch_ie
- 选择运行->外部工具->启动ie
- 按 Alt+R、E、1(假设 launch_ie 是列表中的第一项,否则选择适当的数字)
相关文章