45 lines
924 B
Plaintext
45 lines
924 B
Plaintext
When using the Backbone.js framework, the names of model attributes should not contain spaces. This is because the Events object accepts space-delimited lists of events, so an attributes with spaces in the names could be misinterpreted.
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
[source,javascript]
|
|
----
|
|
Person = Backbone.Model.extend({
|
|
defaults: {
|
|
'first name': 'Bob', // Noncompliant
|
|
'birth date': new Date() // Noncompliant
|
|
},
|
|
});
|
|
----
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
[source,javascript]
|
|
----
|
|
Person = Backbone.Model.extend({
|
|
defaults: {
|
|
firstName: 'Bob',
|
|
birthDate: new Date()
|
|
},
|
|
});
|
|
----
|
|
|
|
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|