未定义访问具有对象属性的jquery选择器

Undefined accessing jquery selector with object property

本文关键字:jquery 选择器 属性 对象 访问 未定义      更新时间:2023-09-26

我在使用对象属性作为jquery选择器时遇到问题

define(["models/security/user", 'text!templates/security/registration.html'], function(SecurityUserModel, Template){
    var SecurityRegistrationView;
    SecurityRegistrationView = Backbone.View.extend({
        initialize: function(){
            // setting model
            this.model = new SecurityUserModel();
            // binding validation
            Backbone.Validation.bind(this);
            this.model.bind("validated:valid", this.valid);
            this.model.bind("validated:invalid", this.invalid);
            this.render();
        },
        form: {
            "username": "#_user_username"
            , "email": "#_user_email"
            , "password": "#_user_password"
        },
        render: function(){
            $(this.el).append(Template);
        },
        events: {
            "submit form": "submit"
        },
        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();
            if (this.model.isValid) {
                this.model.save();
            }
        },
        valid: function(model, attrs){
            console.log(attrs[0]);
            $(this.form[attrs[0]]).parent("div.control-group").addClass("success");
        },
        invalid: function(model, attrs){
            console.log(attrs[0]);
            $(this.form[attrs[0]]).parent("div.control-group").addClass("error");
        }
    });
    return SecurityRegistrationView;
});

铬控制台输出:

username registration.js:45
Uncaught TypeError: Cannot read property 'username' of undefined registration.js:46
password registration.js:45
Uncaught TypeError: Cannot read property 'password' of undefined registration.js:46
email registration.js:45
Uncaught TypeError: Cannot read property 'email' of undefined registration.js:46
username registration.js:45
Uncaught TypeError: Cannot read property 'username' of undefined registration.js:46

$(this.form.username).val(); // works
$(this.form[someVar]); // does not work

validinvalid回调中的this可能没有引用您的视图。将initialize方法中的绑定修改为正确的范围:

this.model.bind("validated:valid", this.valid, this);
this.model.bind("validated:invalid", this.invalid, this);

尝试替换:

$(this.form.username)

带有:

$(this.form['username'])

或者,没有"这个":

$(form['username'])
  • "密码"answers"电子邮件"也是如此