angular-sailsAngularJS 模塊
angular-sails 是使用 Sails Socket.io API 的 AngularJS 模塊。
據(jù)說(shuō),用了 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);
}
});
}());
});
評(píng)論
圖片
表情
