angular-sails -
MIT
跨平台
JavaScript
软件简介
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);
}
});
}());
});