使用Backbone-forms获取Backbone集合时,Selected字段为空

时间:2013-08-18 18:37:53

标签: backbone.js backbone-forms

我使用Backbone-forms来填充模型。我有一个带有主干集合的select字段作为方案中的选项。当此集合为空时,backbone-forms执行获取,但select的html显示为空白。

当集合非空时,始终将第一个选项作为值。

我想第一次,当集合为空时,默认情况下它也会显示第一个值。

class foo extends Backbone.Model
  schema:
    tag:
     type: 'select'
     options: new App.Collections.Tags

1 个答案:

答案 0 :(得分:0)

看一下例子

http://jsfiddle.net/evilcelery/dW2Qu/

var user = new User({
    title: 'Mr',
    name: 'Sterling Archer',
    email: 'sterling@isis.com',
    birthday: new Date(1978, 6, 12),
    password: 'dangerzone',
    notes: [
        'Buy new turtleneck',
        'Call Woodhouse',
        'Buy booze'
    ]
});

这些是默认值。

在你的情况下,你会使用类似于

的东西
var options = new App.Collection.Tags;
class foo extends Backbone.Model
  schema:
    tag:
     type: 'select'
     options: options
for (first in options) break;
var Foo = new foo({tag:first});