You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
976 B
32 lines
976 B
|
4 years ago
|
function HomeViewModel(app, dataModel) {
|
||
|
|
var self = this;
|
||
|
|
|
||
|
|
self.myHometown = ko.observable("");
|
||
|
|
|
||
|
|
Sammy(function () {
|
||
|
|
this.get('#home', function () {
|
||
|
|
// Make a call to the protected Web API by passing in a Bearer Authorization Header
|
||
|
|
$.ajax({
|
||
|
|
method: 'get',
|
||
|
|
url: app.dataModel.userInfoUrl,
|
||
|
|
contentType: "application/json; charset=utf-8",
|
||
|
|
headers: {
|
||
|
|
'Authorization': 'Bearer ' + app.dataModel.getAccessToken()
|
||
|
|
},
|
||
|
|
success: function (data) {
|
||
|
|
self.myHometown('Ваше место рождения: ' + data.hometown);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
});
|
||
|
|
this.get('/', function () { this.app.runRoute('get', '#home'); });
|
||
|
|
});
|
||
|
|
|
||
|
|
return self;
|
||
|
|
}
|
||
|
|
|
||
|
|
app.addViewModel({
|
||
|
|
name: "Home",
|
||
|
|
bindingMemberName: "home",
|
||
|
|
factory: HomeViewModel
|
||
|
|
});
|