0

我想知道如何基于 type='number' 框创建多个文本框...所以一旦有人将 1 添加到数字框,另一个文本框字段将被附加到主干.js 视图.. .然后一旦有人在这些文本框中输入值,将每个值添加到主干模型数组中的一个位置。这是一些代码:

    <label for='choices'># Choices for Students</label>
    <input type='number' name='choices' step=1 />

    initialize: function(opts) {
    this.model = new QuestionCreateModel({
        mode: null,
        choices: ['A', 'B', 'C'],
        Question: "Question goes here",
        MaxChoices: 0,
        MinChoices: 0,
        WordLimit: 0,
        CharLimit: 0,
    }),

正如你所看到的,我想要输入 type='number' 然后加载文本框,这样我就可以将值分配给 Backbone 模型中的选择数组。

谢谢您的帮助!

-斯图

4

1 回答 1

0

我认为您的代码不足。

首先,您需要一个集合和一个模型。

然后你创建你的视图,它监听集合的添加、删除、更改或重置事件。如果您这样做,您的视图将处理这些事件并渲染您说它应该渲染的任何内容。

myView = Backbone.View.extend({
   initialize : function() {
       this.collection = this.options.collection || new myCollection();
       this.collection.on("add remove reset change", this.render, this)
   },
   events : {
       "change [type='number']" : "numberChanged"
   },
   numberChanged : function(ev) {
       var $el = $(ev.target || ev.srcElement);
       var model = $el.data("model");
       model.set("selectedChoice", $el.val());
   },
   render : function() {
       this.$el.empty();
       this.collection.each(function(model) {
           $("<yourinput>").data("model", model)
               .appendTo(this.$el);
       }, this);
   }
});

现在你的模型和收藏

var myModel = Backbone.Model.extend({
   initialize : function() {
      this.on("change:selectedChoice", this.onChoiceChanged, this);
   },
   onChoiceChanged : function(model,value) {
      // from here you know, that a value was selected, you now
      // can say the collection, it should create a new model
      if (this.collection) this.collection.push();
      // this will trigger a "add" event and your "view" will react and rerender.
   }
});

var myCollection = Backbone.Collection.extend({
   model : myModel
});
于 2013-04-20T14:38:26.557 回答