ホームページ  >  記事  >  ウェブフロントエンド  >  サービスやウォッチャーなしで AngularJS の状態間で $scope データを共有する方法は?

サービスやウォッチャーなしで AngularJS の状態間で $scope データを共有する方法は?

Linda Hamilton
Linda Hamiltonオリジナル
2024-11-14 10:31:02434ブラウズ

How to Share $scope Data Between States in AngularJS Without Services or Watchers?

Sharing $scope Data Among States in AngularJS

Question:

How can $scope data from the parent controller be accessible to child states in AngularJS without using services or parent controller watchers?

Answer:

Understanding Scope Inheritance

In AngularJS, scope properties inherit down the state chain if the state views are nested. Therefore, define the state views as follows:

.state("main", {
      controller:'mainController',
      url:"/main",
      templateUrl: "main_init.html"
  })  
  .state("main.1", {
      controller:'mainController',
      parent: 'main',
      url:"/1",
      templateUrl: 'form_1.html'
  })  
  .state("main.2", {
      controller:'mainController',
      parent: 'main',
      url: "/2",
      templateUrl: 'form_2.html'
  })  

Initializing the Data in the Parent Controller

Instantiate the data in the parent controller as an object with properties, such as:

controller('mainController', function ($scope) {
  $scope.Model = $scope.Model || {Name : "xxx"};
})

Using Dot Notation in ng-model

Ensure prototypal inheritance by using dot notation in ng-model, e.g.:

<input type="text" ng-model="Model.Name">

Example:

See a working example in this Plunker: https://plnkr.co/edit/jmEb62e96kHlXPjLGBb9?p=preview

以上がサービスやウォッチャーなしで AngularJS の状態間で $scope データを共有する方法は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。