codebrew / backbone-rails

Easily use backbone.js with rails 3.1
MIT License
1.62k stars 255 forks source link

Uncaught TypeError: Cannot call method 'hasOwnProperty' of undefined #107

Open ramontayag opened 12 years ago

ramontayag commented 12 years ago

I'm new to backbone, but this doesn't look like it should be happening. I have a session model:

class OLBT.Models.Session extends Backbone.Model
  name: 'model'
  urlRoot: 'devise/sessions'
  defaults:
    sessionId: ''
    userId: ''
    email: ''

When I create a new model, session = new OLBT.Models.Session(), I get this error: Uncaught TypeError: Cannot call method 'hasOwnProperty' of undefined. Looks like maybeUnwrap is choking when no args are passed in. Not sure what this does yet, but checking if typeof(args) != 'undefined' before continuing fixes it.

Am I doing something wrong, or is this a valid issue?