Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经开始将 eclipse pydev 用于一些相当不错的 django 项目,但是当我按“F3”而不是把我带到函数定义时,它会跳转到顶部的导入语句,例如
from anotherfolder.file import myfunction
我应该怎么做才能让它跳到正确的地方?
嗨,已经有一段时间了,但我想我只是在这里发布我的解决方案以供参考。
转到项目 >> 属性 >> PyDev - PYTHONPATH 并将 django 根文件夹添加到项目源文件夹(如果它不存在)。
现在,'F3' go-to-definition 应该可以跨 django 应用程序中的不同模块工作。