29

私は過去数日間AngularJSを試してきましたが、モデル間の関係をどのように処理するかがわかりません。

私が取り組んでいるプロジェクトには、ユーザーモデルとアカウントモデルがあります。各アカウントに「ownedBy」というフィールドがあり、そのアカウントを所有するユーザーのIDへの外部キー参照であることがデータベースに設定されています。

Angularでは、main.jsというファイルに次のように設定しています。

var myApp = angular.module('myApp', ['ngResource']);

var Users = myApp.factory('Users', function($resource) {
    var User = $resource('http://api.mydomain.ca/users/:id',
        {id:'@id'},
    {});
    return User;
});

var Accounts = myApp.factory('Accounts', function($resource) {
    var Accounts = $resource('http://api.mydomain.ca/accounts/:id',
        {id:'@id'},
    {});
    return Accounts;
});


function UsersCtrl($scope, Users) {
    $scope.users = Users.query();
}

function AccountsCtrl($scope, Accounts) {
    $scope.accounts = Accounts.query();
}

および次のテンプレート

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <title>Angular Test</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css?v=2.2.1">
</head>
<body>
<div ng-app="myApp">
    <div ng-controller="UsersCtrl">
        <table class="table table-striped">
            <thead>
                <tr>
                    <th>ID</th>
                    <th>First Name</th>
                    <th>Last Name</th>
                </tr>
            </thead>
            <tbody>
                <tr ng-repeat="user in users">
                    <td>{{user.id}}</td>
                    <td>{{user.firstName}}</td>
                    <td>{{user.lastName}}</td>
                </tr>
            </tbody>
        </table>
    </div>
    <div ng-controller="AccountsCtrl">
        <table class="table table-striped">
            <thead>
                <tr>
                    <th>ID</th>
                    <th>Owned By</th>
                </tr>
            </thead>
            <tbody>
                <tr ng-repeat="account in accounts">
                    <td>{{account.id}}</td>
                    <td>{{account.ownedBy}}</td>
                </tr>
            </tbody>
        </table>
    </div>
</div>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular-resource.min.js"></script>
<script src="/bootstrap/js/bootstrap.min.js?v=2.2.1"></script>
<script src="js/main.js"></script>
</body>
</html>

これは機能しています。それは私のRESTサーバーからJSONリソースを引き出し、それをテーブルに表示します。ユーザーとそのアカウント番号を示す1つのテーブルを作成するために必要な次のステップは何ですか?(データベースJOINに相当しますか?)1対多の関係に対してそれを行う別の方法はありますか?(つまり...アカウントには多くのトランザクションがあります)

助けてくれてありがとう :)

4

2 に答える 2

25

$resourceサーバーによって処理されない関係を処理する方法は含まれていませんが、次のようになり$httpます。

module.factory( 'UserService', function ( $http, $q ) {
  return {
    get: function getUser( id ) {
      // We create our own promise to return
      var deferred = $q.defer();

      $http.get('/users/'+id).then( function ( user ) {
        $http.get('/accounts/'+user.id).then( function ( acct ) {

          // Add the account info however you want
          user.account = acct;

          // resolve the promise
          deferred.resolve( user );

        }, function getAcctError() { deferred.reject(); } );
      }, function getUserError() { deferred.reject(); } );

      return deferred.promise;
    }
  };
});

そして、コントローラーでは、他の約束と同じように使用できます。

UserService.get( $scope.userId ).then( function ( user ) {
  $scope.user = user;
});

そしてそれはあなたのテンプレートで利用可能です!

<div>
    User: "{{user.firstName}} {{user.lastName}}" with Acct ID "{{user.acct.id}}".
</div>
于 2013-01-25T21:15:29.057 に答える
0

UIで関係が必要な場合は、js-dataを使用します。ライブラリは、一般的に、関係とデータモデリングを非常にエレガントに処理します。素敵なAPIインターフェースを探しているだけでも、使いやすいことがわかりました。私はngResourceよりもそれを好みます。

あなたの場合、ユーザー用のモデルとアカウント用のモデルがあります

src/app/data/account.model.coffee

angular.module 'app.data' #this can be your module name
  .factory 'Account', (DS) ->
    DS.defineResource
      name: 'account'
      endpoint: 'accounts'
      relations:
        belongsTo:
          user:
            localKey: 'userId'
            localField: 'user'

src/app/data/user.model.coffee

angular.module 'app.data'
  .factory 'User', (DS) ->

    DS.defineResource
      name: 'user'
      endpoint: 'users'
      relations:
        belongsTo:
          account: #make sure this matches the 'name' property of the other model
            foreignKey: 'userId'
            localField: 'account'
于 2016-12-29T05:17:49.573 に答える