最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Backbone.js and its API confusion - Stack Overflow

programmeradmin0浏览0评论

I've recently started using Backbone.js. I like the architecture, in terms of features it's almost exactly what I need...

... However I found the following caveats:

  • For Collections get means something different than for Models. There is no set. Attributes should be accessed in a regular way. I find it rather inconsistent. It's easy to confuse models and collections sometimes. Is there anything that can be done to overe this?
  • Assigning initial values inside Model.extend doesn't always work. For example assigning url will not override the default behaviour. This can only be achieved through a call to set() method. Again very error prone.
  • I still don't know whether it's required to use get/set inside initialize() call.
  • I don't understand why I can't just call _.bindAll(this) inside initialize() and I have to list specific function names to be bound like this: _.bindAll(this, firstFunc, secondFunc, ...). This is not very DRY.

I would like to know: what are the best practices regarding the mentioned situations? What do you do to make the framework more consistent - any monkey patching? Am I doing anything wrong / against the convention?

I'd be grateful for any good real world examples. I did find this: .html and / and those don't address any of the mentioned problems. In fact they just present the simplest ideas and absolutely no border cases, so anything more plicated could be useful.

EDIT:

Ok, and there is one more fundamental think I don't understand:

  • Am I ever allowed to place additional attributes on extension like this: var SomeModel = Backbone.Model.extend({ myattribute: myvalue }) ?
    • If so, then why don't subsequent calls to new SomeModel().get("myattribute") work ?
  • What exactly is this inside initialize() ? Is it model class or model instance ?

EDIT(2):

Well, I found this: /. It looks like Backbone.js 2.0, shares a similar name too :). Haven't tested it yet, which might be a bit of a show stopper, as the library is very recent. However from the docs side of things it looks very promissing. It gets rid of most of the problems that I found, it simplifies the API, it even gets rid of the dependency on underscore.js which for a library is a good thing. I'll post my further findings here.

I've recently started using Backbone.js. I like the architecture, in terms of features it's almost exactly what I need...

... However I found the following caveats:

  • For Collections get means something different than for Models. There is no set. Attributes should be accessed in a regular way. I find it rather inconsistent. It's easy to confuse models and collections sometimes. Is there anything that can be done to overe this?
  • Assigning initial values inside Model.extend doesn't always work. For example assigning url will not override the default behaviour. This can only be achieved through a call to set() method. Again very error prone.
  • I still don't know whether it's required to use get/set inside initialize() call.
  • I don't understand why I can't just call _.bindAll(this) inside initialize() and I have to list specific function names to be bound like this: _.bindAll(this, firstFunc, secondFunc, ...). This is not very DRY.

I would like to know: what are the best practices regarding the mentioned situations? What do you do to make the framework more consistent - any monkey patching? Am I doing anything wrong / against the convention?

I'd be grateful for any good real world examples. I did find this: http://documentcloud.github./backbone/docs/todos.html and http://liquidmedia.ca/blog/2011/01/backbone-js-part-1/ and those don't address any of the mentioned problems. In fact they just present the simplest ideas and absolutely no border cases, so anything more plicated could be useful.

EDIT:

Ok, and there is one more fundamental think I don't understand:

  • Am I ever allowed to place additional attributes on extension like this: var SomeModel = Backbone.Model.extend({ myattribute: myvalue }) ?
    • If so, then why don't subsequent calls to new SomeModel().get("myattribute") work ?
  • What exactly is this inside initialize() ? Is it model class or model instance ?

EDIT(2):

Well, I found this: http://maccman.github./spine/. It looks like Backbone.js 2.0, shares a similar name too :). Haven't tested it yet, which might be a bit of a show stopper, as the library is very recent. However from the docs side of things it looks very promissing. It gets rid of most of the problems that I found, it simplifies the API, it even gets rid of the dependency on underscore.js which for a library is a good thing. I'll post my further findings here.

Share Improve this question edited Apr 27, 2011 at 21:36 julx asked Apr 27, 2011 at 1:58 julxjulx 9,1018 gold badges50 silver badges88 bronze badges 2
  • Good question, I too found Backbone a little strange. You should add your findings as answer to you own question. – brianpeiris Commented Apr 27, 2011 at 21:48
  • @brianpeiris I will as soon as I establish that it is indeed usable. So far, so good. Spine really seems to be well thought through. – julx Commented Apr 27, 2011 at 22:44
Add a ment  | 

2 Answers 2

Reset to default 10

Ok, I think I can say it quite confidently now: Backbone is dead, long live Spine.

Spine isn't exactly a fork of Backbone. It is however very similar and clearly inspired by some of the design decisions. It could be said that the author tried to retain as much as it was possible the original backbone API, getting rid of everything unnecessary or illogical. I find it also easier to extend. The list of changes includes among other things:

  • Getting rid of the dreaded Collections. "class methods" are used instead,
  • Getting most out of js prototypical nature (i.e. no get/set is needed). Attributes are accessed directly. An explicit call to save() is required in order to trigger an event.
  • Views and Controllers are now merged into new type of Controllers together whose purpose is to respond to DOM events and bind to model events.
  • The name :)

I find those design decisions coherent and sensible.

The reason there is no 'set' for Collections is because Collections are not arrays, they are sets, which are potentially ordered. The only supported way to place an element at a particular position is to add it to the collection and then sort the collection.

发布评论

评论列表(0)

  1. 暂无评论