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?

Angular-data is deprecated. js-data + js-data-angular is the new hotness.

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, support is handled via theGitter Channel and theMailing List. Ask your questions there.

When submitting issues on GitHub, please include as much detail as possible to make debugging quick and easy.

  • good - Your versions of Angular, js-data, js-data-angular, etc., relevant console logs/error, code examples that revealed the issue
  • better - Aplnkr,fiddle, orbin that demonstrates the issue
  • best - A Pull Request that fixes the issue, including test coverage for the issue and the fix

Github Issues.

Submitting Pull Requests

  1. Contribute to the issue/discussion that is the reason you'll be developing in the first place
  2. Fork js-data-angular
  3. git clone git@github.com:<you>/js-data-angular.git
  4. cd js-data-angular; npm install; bower install;
  5. Write your code, including relevant documentation and tests
  6. Rungrunt test (build and test)
  7. Your code will be linted and checked for formatting, the tests will be run
  8. Thedist/ folder & files will be generated, do NOT commitdist/*! They will be committed when a release is cut.
  9. Submit your PR and we'll review!
  10. Thanks!

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