0
有沒有辦法在列表中保存CustomField.getAssociatedProjectObjects()
值? 我試過這樣的事:將JIRA項目變量保存在列表中
List<Project> associatedProjects = CustomField.getAssociatedProjectObjects();
但是這不起作用。我收到錯誤:「無法找到符號」。
有沒有辦法在列表中保存CustomField.getAssociatedProjectObjects()
值? 我試過這樣的事:將JIRA項目變量保存在列表中
List<Project> associatedProjects = CustomField.getAssociatedProjectObjects();
但是這不起作用。我收到錯誤:「無法找到符號」。
很可能CustomField在您的代碼中沒有被定義爲變量。
請參考有關此錯誤
而且這是一個好主意,遵循變量名的標準命名約定What does a "Cannot find symbol" compilation error mean?更多細節。在這種情況下,'customField'而不是'CustomField'