I am using ionic framework. here is my app.js
.state('app.articlelist,{
cache:false,
url:"",
and so on..
)
and controller file
.controller('ArticleCtrl',function($scope,getArticle){
alert("Controller runs");
getArticle.getAriclefromDb().then(function(res){
alert("hello test");
});
});
Which is working fine .
Now i have closed my app and also its background process. Now when i reopen mu app agan
i am able to see alert(“controller runs”). but not hello test . this is working fine first time
any suggestions for the same