我有一个Angular应用程序。我需要它只在成功调用API后加载,该API需要返回所述应用程序的数据。
有没有办法在Angular中实现这个目标?
理想情况下它看起来应该是这样的:
userData.fetch('/data').then(
function(res){
// Succesful call
Application.loads();
},
function(res){
// API is not responding. Don't load application
}
);