如何为新标签设置默认id为0



如何为不在列表中的标签设置默认id为0 ?

[DEMO LINK][1]
链接

在上面的例子中,如果我们从现有中选择,那么它会带有id(1或2或3),但是如果添加新标签并按enter键,那么id就会变成文本,我希望id设置为0用于新标签或不在列表中。

怎么做?

CreateSearchChoice应该是你正在寻找的

这里是一个类似的SO我问了一会儿select2 createSearchChoice id从post

createSearchChoice: function (term, data) {
    if ($(data).filter(function () {
            return this.text.localeCompare(term) === 0;
        }).length === 0) {
            // if not found in current list
            // return {id:term, text:term}
            return {
            id: term,
            text: $.trim(term) + ' (new tag)'
            };
},

注意,我将id设置为新的文本术语,您可以将其设置为一个连接的值,如-1/term,然后解析出来,但此解决方案的id中必须包含术语

然后在更改事件上,我确定id是否为数字(已经存在)。如果它不是数字(在createsearchchoice中添加),我将通过我的过程发布到标签数据库

.on("change", function(e) {
    if (e.added) { //is it added from select2
    if (isNumeric(e.added.id)){ //did it already exist or createsearchchoice
        add(e.added.id); //it already existed, just add it to the tag list
        } else { //id was created on the fly, post to the database and return a tag id
            $.post('handlers/tags.ashx', { 
               operation:"select2createtag", 
               //because its not numeric, we know id = new tag text
               text: $.trim(e.added.id)} ,   
               function(data){
               //set the added id to the id you just returned from sql
                e.added.id = data.id;
                //...do something else, like then add the new tag to the item
                });
              };
            };

如果您不想发布到ajax,让您的服务器端评估您的输入项,以及任何非数字标记的id,遵循上面的相同想法

我在这里更新了你的Plunker

相关内容

  • 没有找到相关文章

最新更新