How do I configure Eclipse to launch a browser when Run or Debug is selected using Pydev plugin(当使用 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 是列表中的第一项,否则选择适当的数字)
这篇关于当使用 Pydev 插件选择运行或调试时,如何配置 Eclipse 以启动浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:当使用 Pydev 插件选择运行或调试时,如何配置 Eclipse 以启动浏览器
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01