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.
无论如何要在 Rally 中获取当前选定的项目名称吗?我正在使用带有 JavaScript 的 SDK 2.0 API。
谢谢。
尝试:
var currentProjectName = Rally.environment.getContext().getProject().Name; console.log(currentProjectName);
有关更多信息,请参阅文档中的上下文。