我尝试发送多个file.getPath()
以在select中做出选项(在这种情况下为4)
但相反,我将所有内容都放在一行:http://prntscr.com/hjwtsd
问题是什么?
JAVA
List<GitlabRepositoryTree> files = GitLab.getBranchFiles(project,branch);
for (GitlabRepositoryTree file : files) {
response.getWriter().write(file.getPath());
}
HTML
<select id="file" class="form-control" name="file">
<%-- JQUERY --%>
</select>
JQUERY
success: function (file) {
$('#file').empty();
$('#file').append($("<option/>", {
value: file,
text: file
}));
}