第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

controller之間共享數(shù)據(jù)的問題

controller之間共享數(shù)據(jù)的問題

德瑪西亞99 2018-10-12 15:14:54
<!DOCTYPE html><html ng-app="myApp"><head>    <meta charset="UTF-8">    <title>AngularJS</title>    <script src="https://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>    <style>        div{            border:1px solid black;        }    </style></head><body>     <div ng-controller="childCtrl1">        <button ng-click="setPage()">換頁</button>     </div>     <div ng-controller="childCtrl2">        <span>當(dāng)前頁:{{nowPage}}</span>     </div></body><script type="text/javascript">var app = angular.module('myApp', []);app.factory('pageNum', function() {  var page = {     num:1   };   return page;});app.controller('childCtrl1', function($scope,pageNum) {    $scope.setPage = function() {          pageNum.num++;    };});app.controller('childCtrl2', function($scope,pageNum) {    $scope.nowPage=pageNum.num;});</script></html>在點(diǎn)擊換頁之后, childCtrl2里的nowPage為什么沒有變?用怎么樣修改factory才可以實(shí)現(xiàn)同步變化?
查看完整描述

1 回答

?
BIG陽

TA貢獻(xiàn)1859條經(jīng)驗(yàn) 獲得超6個(gè)贊

這是時(shí)候不是應(yīng)該用 broadcast 和 emit 嗎


查看完整回答
反對(duì) 回復(fù) 2018-11-06
  • 1 回答
  • 0 關(guān)注
  • 661 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)