3

我有一个处理注册组件的主干视图,因为这需要大量的表单访问我有想法将表单选择器存储在对象属性中。

define(["models/security/user", 'text!templates/security/registration.html'], function(SecurityUserModel, Template){

    var SecurityRegistrationView;

    SecurityRegistrationView = Backbone.View.extend({
        initialize: function(){
            this.model = new SecurityUserModel();
            this.model.bind("validated:valid", this.valid);
            this.model.bind("validated:invalid", this.invalid);

            Backbone.Validation.bind(this);

            this.render();
        },
        render: function(){
            $(this.el).append(Template);
        },
        events: {
            "submit form": "submit"
        },
        form: {
            "username": $("#_user_username")
            , "email": $("#_user_email")
            , "password": $("#_user_password")
        },
        submit: function(e){
            e.preventDefault();

            this.model.set("username", this.form.username.val());
            this.model.set("password", this.form.email.val());
            this.model.set("email", this.form.password.val());
            this.model.validate();


            // debug    
            console.log([this.form, this.form.username.val(), this.form.email.val()]);

            if (this.model.isValid) {
                this.model.save();
            }
        },
        valid: function(model, attrs){
            // error
            this.form.attrs[0].username.parent("div.control-group").addClass("success");
        },
        invalid: function(model, attrs){
            // error
            this.form.attrs[0].username.parent("div.control-group").addClass("error");
        }
    });

    return SecurityRegistrationView;
});

当我 console.log this.form 时,我得到一个看起来不错的对象,没有任何未定义或奇怪的东西:

[
Object
    email: e.fn.e.init[0]
        context: HTMLDocument
        selector: "#_user_email"
        __proto__: Object[0]
    password: e.fn.e.init[0]
        context: HTMLDocument
        selector: "#_user_password"
        __proto__: Object[0]
    username: e.fn.e.init[0]
        context: HTMLDocument
        selector: "#_user_username"
        __proto__: Object[0]
    __proto__: Object
]

登录访问选择器 (this.form.username.val()) 的 jquery 函数失败,未定义。

为什么不能在属性上使用 jQuery 函数($el 使用它)思考错误在哪里?

4

3 回答 3

2

您没有以正确的方式使用选择器。您需要将 jQuery 范围限定为您的视图,这样做:

invalidateForm: {
  "username": this.$("#_user_username"), 
  "email": this.$("#_user_email"),
  "password": this.$("#_user_password")
},

并且渲染必须是这样的:

render: function(){
  this.$el.append(Template);
  this.invalidateForm();
},

也使用 this.$el 代替 $(this.el) 以获得更高效的性能,它是视图元素的缓存版本。

于 2012-07-09T19:32:06.250 回答
2

我认为问题是,在调用form: {...}之前进行评估render——并且您查询的 HTML 元素是在render.

也许您可以尝试在渲染函数的最后执行此操作:

this.form = {
            "username": $("#_user_username")
            , "email": $("#_user_email")
            , "password": $("#_user_password")
        }
于 2012-07-09T18:18:14.157 回答
1

这是一个上下文问题,您可以像这样更新代码:

initialize: function(){
    _.bindAll(this, 'render', 'submit', 'valid','invalid');
    this.model = new SecurityUserModel();
    .....
}

关于 _.bindAll ,你可以看到: 现在骨干网默认做 _.bindAll 了吗? https://stackoverflow.com/a/6396224/1303663

编辑:>>>>>>>>>>>>

对不起,我没有完全理解你的意思。你可以试试这个,我想这就是你想要的:

render: function(){
        $(this.el).append(Template);
        this.initform();
    },
.....
initform: function(){            
        this.form = {};
        this.form.username = $("#_user_username");
        this.form.email = $("#_user_email");
        this.form.password = $("#_user_password");
    },

没有其他变化

于 2012-07-09T18:12:40.130 回答