我们有一个包含20多个字段的长格式,因此分为三页
在第一页中存在文件上传,因此当用户导航到第二页时我想继续上传文件
代码:
//first page
controller('FirstController',function($scope){
//do file upload here
$scope.uploadFile = function(){
}
})
//on navigate to second page load this controller
controller('SecondController',function($scope){
//update profile info here
$scope.ProfileInfo = function(user){
}
});