我使用主干表单来填充模型。我有一个选择字段,其中包含一个主干集合作为方案中的选项。当这个集合为空时,主干表单进行提取,但select的html显示为空。
当集合不为空时,总是将第一个选项作为值。
我希望第一次,当集合为空时,默认情况下也会显示第一个值。
class foo extends Backbone.Model
schema:
tag:
type: 'select'
options: new App.Collections.Tags
查看示例
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});