2
なぜ私のリストは知りません; add
をクリックすると更新されません。リフレッシュすると更新されます。あなたは、サービス内の約束を解決:ここに私のコードは私のリストが更新時に更新されるのはなぜですか
サービス
function getCustomer() {
return $http.get(API_URL+'api/customer')
.then(getCustomerSuccess)
.catch(function(err) {
});
function getCustomerSuccess(response) {
return response.data;
}
}
のJs
function getCustomer() {
dataServices.getCustomer()
.then(function(response){
vm.customer = response;
})
}
vm.add = function(customer) {
dataServices.addCustomer(customer);
getCustomer();
logger.success('Add Customer Success');
}
感謝のため、私はそれをしようとします示唆しています。しかし、このケースで$ qを使うべき理由を私に説明できますか? –
@NguyễnBảoDũngこの例を見てください:http://jsfiddle.net/oymubx4z/ –
それはあまりにもうまくありません。私は異なるファイルでテストしようとしています。しかし、私のファイルでは、それは動作しません。私はCORSを使用していますので、CORSはこれに関連しているのですか? –