当前位置

网站首页> 程序设计 > 开源项目 > 编程语言 > 浏览文章

angular-sails

作者:小梦 来源: 网络 时间: 2024-01-18 阅读:

11月23日开源中国源创会年度(北京万豪酒店)千人盛典正在报名中

angular-sails 是使用 Sails Socket.io API 的 AngularJS 模块。

据说,用了 Angular-sails,从此告别 Ajax!

安装

bower install angular-sails

使用示例

var app = angular.module("MyApp", ['ngSails']);//OPTIONAL! Set socket URL!app.config(['$sailsProvider', function ($sailsProvider) {    $sailsProvider.url = 'http://foo.bar';}]);app.controller("FooController", function ($scope, $sails) {  $scope.bars = [];  (function () {    $sails.get("/bars")      .success(function (data) {        $scope.bars = data;      })      .error(function (data) {        alert('Houston, we got a problem!');      });    $sails.on("message", function (message) {      if (message.verb === "create") {        $scope.bars.push(message.data);      }    });  }());});

相关阅读

热点阅读

网友最爱