附加多个选项以选择

时间:2017-12-06 15:40:52

标签: javascript java jquery

我尝试发送多个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
            }));
      }

0 个答案:

没有答案