バックボーン モデル バインダーでバックボーン マリオネットを使用しています。
以下のコードでは、select + input[type=date] のデフォルトが完了し、ユーザーがそれらを変更しない場合、ユーザーが保存をクリックすると、モデル属性は空に戻ります。ユーザーがフィールドを編集して保存をクリックすると、その 1 つのフィールドがモデル属性に設定されます。
define(["marionette", "underscore", "text!app/templates/sicknesses/form.html", "app/models/sickness", "app/collections/users"], function(Marionette, _, Template, Model, Users) {
"use strict"
return Backbone.Marionette.CompositeView.extend({
events: {
"click #createButton": "onClickSave"
},
_modelBinder: undefined,
initialize: function(options) {
var that
this._modelBinder = new Backbone.ModelBinder()
this.mode = 'create'
this.users = new Users()
this.users.on("reset", this.render, this)
this.users.fetch()
this.model = new Model()
},
onClickSave: function(ev) {
ev.preventDefault()
console.log(this.model.attributes)
},
render: function() {
var bindings, html
if (this.users.length > 0) {
bindings = {
start_date: "#start_date",
end_date: "#end_date",
sicknote: "#sicknote",
user: "#user"
}
html = _.template($(Template).html(), {
model: this.model.toJSON(),
users: this.users.toJSON(),
mode: this.mode
})
this.$el.html(html)
this._modelBinder.bind(this.model, this.$el, bindings)
}
return this
}
})
})