はAppearently、私はここで行く、私の以前のexplainationsで明らかにされていない:更新スコープ変数doesntの変更出力
function HomeController ($scope, Principal, LoginService, NewtagService, LoginfailService, $state, $http) {
...
$scope.contacts = [{name: 'Peter'}];
...
}
<div ng-controller="HomeController">{{contacts[0].name}}</div>
この版画 'ピーター' は、
function HomeController ($scope, Principal, LoginService, NewtagService, LoginfailService, $state, $http) {
// $scope.contacts = [{name: 'Peter'}];
function createServiceTag() {
$http({
method: 'POST',
url: '/api/important'
}).then(function successCallback(response) {
$scope.contacts = [
{name:'Lois'}
];
ImportantService.open(response.data);
}, function errorCallback(response) {
console.log(response);
});
}
}
<div ng-controller="HomeController">{{contacts[0].name}}</div>
印刷物の何のに対し
なぜあなたの 'then'関数の中に$(function(){}がありますか? – lintu
この$を削除してください(function(){ –