angular.js - angular的$resource问题
大家讲道理
大家讲道理 2017-05-15 16:52:46
0
1
498

服务 $resource('/user/:userId') 如果我想post一个新的用户,服务需要用怎么样的写法吗?还是说url不能这样。直接用save({},{name:'a'})这种貌似不行?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(1)
迷茫

I didn’t know much about it when I first came into contact with it before服务封装return $resource('/api/user/u/:id',{id:'@id'},{update:{method:'PUT'},insert :{method : 'POST'}});
The front end calls userService.insert({},{data:...},function(data){ //callback })

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