您好,登錄后才能下訂單哦!
$scope代表視圖與數(shù)據(jù)模型的中間橋梁:scope域中的對(duì)象都model和view都可以共享,并且數(shù)據(jù)是雙向同步controller的作用域:主要負(fù)責(zé)controller標(biāo)簽包裹的元素的數(shù)據(jù)處理,如果子元素嵌套Controller,則相應(yīng)的子元素的作用Controller以距離子元素最近的為準(zhǔn)(這種最近作用的原則在Jmeter測(cè)試框架,avalon的ms-controller同樣體現(xiàn))
HTML正文:
<!-- 指定應(yīng)用名及控制器 --> <body ng-app="myApp"> <div ng-controller="myCtrl01"> <p>myCtrl01的作用域</p> 名: <input type="text" ng-model="firstName"><br> 姓: <input type="text" ng-model="lastName"><br> <br> 姓名: {{firstName + " " + lastName}} <hr/> <p>myCtrl02的作用域</p> <div ng-controller="myCtrl02"> 名: <input type="text" ng-model="firstName"><br> 姓: <input type="text" ng-model="lastName"><br> <br> 姓名: {{firstName + " " + lastName}} </div> </div>
Javascript操作代碼:
//定義應(yīng)用的控制器,負(fù)責(zé)具體數(shù)據(jù)處理: //定義angular應(yīng)用的名稱:myApp:一個(gè)html中只有一個(gè)應(yīng)用,如果存在多個(gè)以第一個(gè)為準(zhǔn) var app = angular.module('myApp', []); app.controller('myCtrl01', function($scope) { /* 后臺(tái)向scope域中存放對(duì)象:頁面存放的標(biāo)簽: * ng-init 初始化變量 * ng-model:初始化變量并進(jìn)行數(shù)綁定 */ $scope.firstName= "John"; $scope.lastName= "Doe"; }); app.controller('myCtrl02', function($scope) { $scope.firstName= "Hello"; $scope.lastName= "Python"; });
效果:
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。