angular.js - How to use angular js if there are multiple services?
怪我咯
怪我咯 2017-05-15 16:51:23
0
4
502

The background is mainly restful api, for example, there are many taskService, projectService, commentService, etc. I want or get certain data of these three services in one interface, that is, for a task, I want to get comments, project, task content, etc. Detailed information. How to write

in controller
taskService.query({uid:13},function(resource){
            $scope.tasks_list=resource;//获取某条任务的所有信息
        projectService.query({id:resouce.xmid},function(){//在将该信息的项目id传过去
            ...
        })
})

Will this cause nesting?
I hope the masters can give me some ideas~, or is there something wrong with the design from the beginning?

怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(4)
大家讲道理

It is recommended to use the promise solution, which is $q in angular.

漂亮男人

If there is a correlation between task project comment, it is recommended to encapsulate it on the server and return it through an interface.

滿天的星座

This should be a server-side problem. If there are needs to call multiple services, it is best to add corresponding server APIs based on these needs. In this way, you can request this API on the front end.

大家讲道理

The front-end request is asynchronous. It is best to change the API on the server side. If the server side does not change, you can only use Angular's promise here, which is equivalent to converting to a synchronous operation

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template