Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Angular wrapper for js-data

License

NotificationsYou must be signed in to change notification settings

js-data/js-data-angular

Repository files navigation

js-data logo

js-data-angularbower versionnpm versionCircle CInpm downloadsLicense

Angular wrapper forjs-data.

What happened Angular-data?

Js-data-angular is Angular-data 2.0, withjs-data as the framework-agnostic core. Documentation for Angular-data 1.x can be found atangular-data.pseudobry.com.

Guides

Js-data-angular API Documentation

Project Status

Latest Release:Latest Release

Status:

Dependency StatusCoverage StatusCodacity

Supported Platforms:

browsers

Quick Start

bower install --save js-data js-data-angular ornpm install --save js-data js-data-angular.

Loadjs-data-angular.js afterjs-data.js.

angular.module('myApp',['js-data']);
angular.module('myApp').factory('Post',function(DS){returnDS.defineResource('post');});angular.module('myApp').factory('Comment',function(DS){returnDS.defineResource('comment');});
app.controller('postCtrl',function($scope,$routeParams,Post,Comment){// it's up to your server to know how to interpret this query// or you can teach js-data how to understand your servers' query languagevarquery={postId:$routeParams.id};Post.find($routeParams.id);Comment.findAll(query);// My goodness this was easyPost.bindOne($routeParams.id,$scope,'post');Comment.bindAll(query,$scope,'comments');// Long form (same effect as above)$scope.$watch(function(){returnPost.lastModified($routeParams.id);},function(){$scope.post=Post.get($routeParams.id);});$scope.$watch(function(){// Changes when anything in the Comment collection is modifiedreturnComment.lastModified();},function(){$scope.comments=Comment.filter(query);});});

Changelog

CHANGELOG.md

Community

Contributing

First, feel free to contact me with questions.Mailing List.Issues.

  1. Contribute to the issue that is the reason you'll be developing in the first place
  2. Fork js-data-angular
  3. git clone https://github.com/<you>/js-data-angular.git
  4. cd js-data-angular; npm install; bower install;
  5. grunt go (builds and starts a watch)
  6. (in another terminal)grunt karma:dev (runs the tests)
  7. Write your code, including relevant documentation and tests
  8. Submit a PR and we'll review

License

The MIT License (MIT)

Copyright (c) 2014-2015 Jason Dobry

Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THESOFTWARE.

About

Angular wrapper for js-data

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors20


[8]ページ先頭

©2009-2025 Movatter.jp