-
Notifications
You must be signed in to change notification settings - Fork 4
/
get.html
48 lines (35 loc) · 1.15 KB
/
get.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js"></script>
<script>
var Book = Backbone.Model.extend({
defaults: {
title: '',
pages: 0
}
});
var book1 = new Book();
console.log(book1.get('title'));
console.log(book1.get('pages'));
var book2 = new Book({
title: 'Novelas Ejemplares',
pages: '200'
});
console.log(book2.get('title'));
console.log(book2.get('pages'));
var attrs = book2.toJSON();
var book3 = new Book(attrs);
console.log(JSON.stringify(book3));
</script>
</body>
</html>