Restangular的使用

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

// First way of creating a Restangular object. Just saying the base URL

var baseAccounts = Restangular.all('accounts');


// This will query /accounts and return a promise.

baseAccounts.getList().then(function(accounts) {

  $scope.allAccounts = accounts;

});


// Does a GET to /accounts

// Returns an empty array by default. Once a value is returned from the server

// that array is filled with those values. So you can use this in your template

$scope.accounts = Restangular.all('accounts').getList().$object;


var newAccount = {name: "Gonto's account"};


// POST /accounts

baseAccounts.post(newAccount);


// GET to http://www.google.com/ You set the URL in this case

Restangular.allUrl('googlers', 'http://www.google.com/').getList();


// GET to http://www.google.com/1 You set the URL in this case

Restangular.oneUrl('googlers', 'http://www.google.com/1').get();


// You can do RequestLess "connections" if you need as well


// Just ONE GET to /accounts/123/buildings/456

Restangular.one('accounts', 123).one('buildings', 456).get()


// Just ONE GET to /accounts/123/buildings

Restangular.one('accounts', 123).getList('buildings')


// Here we use Promises then

// GET /accounts

baseAccounts.getList().then(function (accounts) {

  // Here we can continue fetching the tree :).


  var firstAccount = accounts[0];

  // This will query /accounts/123/buildings considering 123 is the id of the firstAccount

  $scope.buildings = firstAccount.getList("buildings");


  // GET /accounts/123/places?query=param with request header: x-user:mgonto

  $scope.loggedInPlaces = firstAccount.getList("places", {query: param}, {'x-user': 'mgonto'})


  // This is a regular JS object, we can change anything we want :)

  firstAccount.name = "Gonto"


  // If we wanted to keep the original as it is, we can copy it to a new element

  var editFirstAccount = Restangular.copy(firstAccount);

  editFirstAccount.name = "New Name";



  // PUT /accounts/123. The name of this account will be changed from now on

  firstAccount.put();

  editFirstAccount.put();


  // PUT /accounts/123. Save will do POST or PUT accordingly

  firstAccount.save();


  // DELETE /accounts/123 We don't have first account anymore :(

  firstAccount.remove();


  var myBuilding = {

    name: "Gonto's Building",

    place: "Argentina"

  };


  // POST /accounts/123/buildings with MyBuilding information

  firstAccount.post("Buildings", myBuilding).then(function() {

    console.log("Object saved OK");

  }, function() {

    console.log("There was an error saving");

  });


  // GET /accounts/123/users?query=params

  firstAccount.getList("users", {query: params}).then(function(users) {

    // Instead of posting nested element, a collection can post to itself

    // POST /accounts/123/users

    users.post({userName: 'unknown'});


    // Custom methods are available now :).

    // GET /accounts/123/users/messages?param=myParam

    users.customGET("messages", {param: "myParam"})


    var firstUser = users[0];


    // GET /accounts/123/users/456. Just in case we want to update one user :)

    $scope.userFromServer = firstUser.get();


    // ALL http methods are available :)

    // HEAD /accounts/123/users/456

    firstUser.head()


  });


}, function errorCallback() {

  alert("Oops error from server :(");

})


// Second way of creating Restangular object. URL and ID :)

var account = Restangular.one("accounts", 123);


// GET /accounts/123?single=true

$scope.account = account.get({single: true});


// POST /accounts/123/messages?param=myParam with the body of name: "My Message"

account.customPOST({name: "My Message"}, "messages", {param: "myParam"}, {})


转载于:https://my.oschina.net/u/1453451/blog/504487

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/262841.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

浅析数据质量检查

What are the four broad categories of data quality checks? Provide an implementation technique for each. 数据质量检查的四大类是什么?为每类提供一种实现技术。 答:数据质量检查是ETL工作中非常重要的一步,主要关注一下四个方面。 1…

在用dw.GetSqlSelect()获得到的Sql语句出现PBSELECT( VERSION的解决办法

在用dw.GetSqlSelect()获得到的Sql语句出现PBSELECT( VERSION的解决办法: 把数据窗口的数据源转换到syntax模式下就行了 ! 转载于:https://www.cnblogs.com/Tonyyang/archive/2008/06/03/1212689.html

刚发现的2011年最给力的春联

上联:房价涨.地价涨.油价涨.电价涨.水价涨.粮价涨.肉价涨.蛋价涨.菜价涨.药价涨.这也涨.那也涨.怎一个涨字了得.涨了还涨。 下联:上学难.参军难.就业难.买房难.租房难.择偶难.结婚难.育儿难.就医难.养老难.男也难.女也难.看世间难字当头.难上加难 横批:活…

SQL Server的镜像是基于物理块变化的复制 镜像Failover之后数据的预热问题

SQL Server的镜像是基于物理块变化的复制 镜像Failover之后数据的预热问题 基于物理块变化的复制,没有并行也是很快的。 逻辑复制的日志是按事务结束的时间排序的,而物理复制是与事务无关的,只要发生了改变,就可以立即传送到备库&…

VSS不需要验证自动登录的问题

新项目要开始了,搭建好开发环境以及项目框架后,遇到第一个问题就是我自己的机子打开VS不需要登陆VSS就直接打开了解决方案,而其他的同事则没有遇到这样的情况,于是搜索了下原因,发现是设置问题: 1,在VSS管理器中》工具》选项》允许网络用户名自动登录 这个选项去掉 …

说说“开源杀死商业开发工具”

今天在Solidot看到一条很有意思的短文,标题是“开源杀死商业开发工具”,其文如下: UNA,源自拉丁形容词“together”,是一种协作式的实时源代码开发环境,允许两个或更多的开发者同时编辑相同的代码。支持大部…

ubuntu22.04 安装vscode

安装 Visual Studio Code(VSCode)在 Ubuntu 22.04 系统上是一个简单的过程。以下是步骤指南: 更新系统软件包列表: 打开终端,并执行以下命令来更新您的系统软件包列表: sudo apt update安装依赖包&#xff…

(转)一篇令所有游戏圈的兄弟汗颜的文章

一篇让我看了一个小时的文章,看到了自己的粗浅,有些问题也许只有加入游戏行业了才更有体会1、无休止的抄袭回想起上个世纪末,华人游戏圈还处于原始阶段,那时候随便竖几条枪占个山头就敢说自己是做游戏的,拿出来的东西勉…

mybatis学习教程中级(十)mybatis和ehcache缓存框架整合(重点)

1、前言 前面讲解了mybatis的一级、二级缓存。一级然并卵(spring整合后),二级还是有用的。我们现在来看看用ehcache来维护管理二级缓存。不要问我为什么,因为都这么用!!!java是框架语言&#x…

八、开发者工具和指南(四) Orchard dependencies and libraries

本文列举了Orchard项目中的依赖,和Orchard使用它们的简介.依赖的副本在源码库的lib目录中,包含了它们各自的licenses,也能在CREDITS.txt文件中看到它们的归属. Akismet 这是Orchard中的默认的垃圾保护服务. ANTLR v3 这是语言识别工具,提供了构造识别器的框架,解释程序,编译器和…

如何使用三态工作流 - [MOSS 2007应用日记]

MOSS 2007的一个很重要的功能就是提供了工作流,让我们可以结合工作流来实现各种需求,系统提供了几种默认的工作流供大家使用,“三态工作流”就是默认的一种。 现在通过一个模拟实验来看看怎么使用“三态工作流”:在行政部子网站下…

微信小程序遍历wx:for,wx:for-item,wx:key

微信小程序中wx:for遍历默认元素为item,但是如果我们设计多层遍历的时候我们就需要自定义item的字段名以及key的键名 wx:for"{{item.goodsList}}" wx:for-item"ite" wx:for-key"idx" wx:key"{{idx}}" 这样子元素就被设置成…

Linux下samba服务的错误处理

错误显示:解决方法:在/etc/samba/smb.conf 文件里有一行自己修改过hosts allow 192.168.x.x x.x.x.x在这里加上自己的充当客户端主机的ip地址即可转载于:https://blog.51cto.com/luochen2015/1693712

[POJ2420 A Star not a Tree?]

[关键字]:随机化搜索 模拟退火 [题目大意]:给出n个点,找出一个距离所有点之和最小的点,输出距离。 // [分析]:同样是随机化的方法,只是在把没个点随机移动时有小小的变动。poj1379是使用得随机一个角度x然后…

推荐:iReaper - MSDN中文Webcast下载程序

看MS的webcast还真是麻烦,我混了这么久,都没搞清楚,这东西在MS那里怎么看的.老是想看,但不知道怎么进去看.但用这个小软件下载看,就很方便.http://myron.cnblogs.com/ 转载于:https://www.cnblogs.com/shiningrise/archive/2008/06/15/1222270.html

前端常用正则

手机号正则 const phoneReg/^1[3456789]\d{9}$/; 邮编正则 const emailReg/^[0-9]{6}$/; 整数正则(大于0) const zsReg/^(([1-9]\d)|[1-9])?$/; 小数点后保留2位 const limitReg/(^[1-9]([0-9])?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])…

JavaScript URL参数读取

* 用法: * var args getArgs( ); // 从 URL 解析出参数 * var q args.q || ""; // 如果定义了某参数,则使用其值,否则给它一个默认值 * var n args.n ? parseInt(args.n) : 10; */ var getArgs function () { var args new O…

移动wabAPP 开发 viewport 注意事项

我们在开发移动设备的网站时&#xff0c;最常见的的一个动作就是把下面这个东西复制到我们的head标签中&#xff1a; <meta name"viewport" content"widthdevice-width, initial-scale1.0, maximum-scale1.0, user-scalable0">http://wenzhixin.net.…

关于QTP 9.2对象库管理的一些总结

QTP 9.2增强了对于对象库的编辑功能&#xff0c;改进了8.2版本中饱受用户诟病的&#xff0c;对于对象库编辑功能不够强大的缺 点。 比如1&#xff09;在新增“Object Repository Manager”中整合了原8.2版本中以插件形式提供的merge功能&#xff0c;方便用户 更加便捷的管理好对…

三目运算符

在js中使用三目运算符能够很大程度上提高代码的&#xff0c;简洁度&#xff0c;但是三目运算符对于js功底不够深厚的同学来说&#xff0c;又实在有些费解和难以记忆&#xff0c;在此简单的做个备忘。 三元运算符的表达式&#xff1a; (expression1) ? (expression2) : (ex…