在我的用例中,我正在使用标记tag-it从用户那里获取标记。我正在以html <ul>形式输入标签。我在服务器端使用golang。

的HTML:

   <form class="comment-form" action="/add/" method="POST" enctype="multipart/form-data">
    <div class="form-input">
      <label for="tags_label">Tags</label>
      <ul id="tags">
        <script type="text/javascript">
          $("#myTags").tagit();
          var tagsArray = ["C", "C++", "Go", "Ruby"];
          $("#tags").tagit({
              itemName: "teamId",
              fieldName: "teamName",
              availableTags: tagsArray,
              allowSpaces:true,
              caseSensitive:false,
              removeConfirmation:true,
              placeholderText:"Tags",
              tagLimit: 5,
              allowDuplicates: false,
              singleFieldDelimiter: ',',
              onlyAvailableTags: false
          });
        </script>
      </ul>
    </div>
   </form>

在服务器端,我试图获得类似于以下形式的值,如下所示:
tags            := r.FormValue("tags")
log.Printf("Tags : ", tags)

但这是行不通的。有人可以帮我吗?

编辑:
当我检查元素时,这就是我看到的,
<div class="form-input">
    <label for="tags_label">Tags</label>
    <ul id="tags" class="tagit ui-widget ui-widget-content ui-corner-all">
        <script type="text/javascript">
            $("#myTags").tagit();
            var tagsArray = ["C", "C++", "Go", "Ruby"];
            $("#tags").tagit({
                    itemName: "teamId",
                    fieldName: "teamName",
                    availableTags: tagsArray,
                    allowSpaces:true,
                    caseSensitive:false,
                    removeConfirmation:true,
                    placeholderText:"Tags",
                    tagLimit: 5,
                    allowDuplicates: false,
                    singleFieldDelimiter: ',',
                    onlyAvailableTags: false
            });
        </script><li class="tagit-new"><input type="text" class="ui-widget-content ui-autocomplete-input" placeholder="Tags" autocomplete="off" role="textbox" aria-autocomplete="list" aria-haspopup="true"></li>
    </ul>
</div>

最佳答案

发现了问题:您希望有一个字段,但是没有在tag-itoptions中指定它。如下使用它(为清楚起见添加了一些注释):

<script type="text/javascript">
    $("#myTags").tagit();
    var tagsArray = ["C", "C++", "Go", "Ruby"];
    $("#tags").tagit({
        fieldName: "teamName", // The name of the hidden input field
        availableTags: tagsArray,
        allowSpaces:true,
        caseSensitive:false,
        removeConfirmation:true,
        placeholderText:"Tags",
        tagLimit: 5,
        allowDuplicates: false,
        singleField: true, // Use a hidden input element with the fieldName name
        singleFieldDelimiter: ',', // Optional, default value is same.
        onlyAvailableTags: false
    });
</script>

在运行时(并输入标签),将使用隐藏的<input>,以及在tag-it选项中指定的标签。
<input type="hidden" style="display:none;" value="Go,another value,C" name="teamName">

在Go中,按以下方式处理(您错过了%s中的Printf):
tags := r.FormValue("teamName")
log.Printf("Tags: %s", tags)

然后,您可以使用 strings.Split 分割标签。

关于html - 如何在golang中获取<ul>的表单值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36253370/

10-17 02:41