diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/http.js | 14 | ||||
-rw-r--r-- | src/index.js | 7 | ||||
-rw-r--r-- | src/myview.js | 14 | ||||
-rw-r--r-- | src/view.js | 12 |
4 files changed, 43 insertions, 4 deletions
diff --git a/src/http.js b/src/http.js new file mode 100644 index 0000000..355efb2 --- /dev/null +++ b/src/http.js @@ -0,0 +1,14 @@ +import axios from 'axios'; + +class Http { + constructor() { + this.service = axios.create(); + } + + set config(configOptions) { + this.service = axios.create(configOptions); + } +} + + +export default new Http(); diff --git a/src/index.js b/src/index.js index f29efc1..68c959b 100644 --- a/src/index.js +++ b/src/index.js @@ -1,12 +1,17 @@ import Backbone from 'backbone'; import TestView from './view'; import _ from 'underscore'; +import Http from './http'; Backbone.history.start(); class Index { constructor() { - new TestView(); + Http.config = { + baseURL: 'http://demo1393194.mockable.io/' + }; + new TestView(); //MainView + } } diff --git a/src/myview.js b/src/myview.js index 026f563..d5c0484 100644 --- a/src/myview.js +++ b/src/myview.js @@ -1,10 +1,13 @@ import Backbone from 'backbone'; -import * as _ from 'underscore'; +import _ from 'lodash'; import $ from 'jquery'; import Mustache from 'mustache'; +import axios from 'axios'; +import Http from './http'; export default class MyView extends Backbone.View { + constructor() { super(); } @@ -13,11 +16,18 @@ export default class MyView extends Backbone.View { this.el = '#myarea'; this.$el = $(this.el); this.template = 'Hello'; + Http.service.get('olapa') + .then(function (response) { + console.log(response); + }) + .catch(function (error) { + console.log(error); + }); this.render(); + } render() { - console.log(this.el) this.$el.html(Mustache.render(this.template)); } diff --git a/src/view.js b/src/view.js index 399ac03..860148f 100644 --- a/src/view.js +++ b/src/view.js @@ -4,6 +4,8 @@ import $ from 'jquery'; import Mustache from 'mustache'; import MyView from './myview'; +import Http from './http'; + export default class TestView extends Backbone.View { constructor() { @@ -13,7 +15,15 @@ export default class TestView extends Backbone.View { initialize() { this.el = 'li'; this.$el = $(this.el); - this.template = '<div id="myarea"></div>' + this.template = '<div id="myarea"></div>'; + + Http.service.get('test1').then(function (response) { + console.log(response); + }) + .catch(function (error) { + console.log(error); + }); + this.render(); } |