溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

AngularJS如何實現(xiàn)單選框及多選框的雙向動態(tài)綁定

發(fā)布時間:2021-09-01 14:20:35 來源:億速云 閱讀:200 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)AngularJS如何實現(xiàn)單選框及多選框的雙向動態(tài)綁定的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

AngularJS 在 <input type="text" /> 中實現(xiàn)雙向動態(tài)綁定十分簡單,如下所示:

<input type="text" ng-model="topic.title" />

只需要用ng-model 與 $scope 中的屬性對應(yīng),即實現(xiàn)了type=”text” 的雙向動態(tài)綁定。當(dāng) <input type="radio" /> 及 <input type="checkbox" /> 時情況略有不同:

1. <inputtype="radio" />

<input type="radio" name="person-action" value="go_home" ng-model="person.action" />回家 
<input type="radio" name="person-action" value="go_to_school" ng-model="person.action" />回學(xué)校

通過 value 屬性指定選中狀態(tài)下對應(yīng)的值,并通過 ng-model 將單選框與 $scope 中的屬性對應(yīng),便實現(xiàn)了 type=”radio” 時的雙向動態(tài)綁定。

2. <input type="checkbox" />

<input type="checkbox" ng-true-value="true" ng-false-value="false" ng-model="phone.play_sound" />鈴聲 
<input type="checkbox" ng-true-value="true" ng-false-value="false" ng-model="phone.play_vibrate" />震動 
<input type="checkbox" ng-true-value="true" ng-false-value="false" ng-model="phone.play_lights" />呼吸燈

通過AngularJS 的內(nèi)置指令 ng-true-value 和 ng-false-value ,指定多選框在選中和未選中狀態(tài)下對應(yīng)的值,再通過ng-model 將其與 $scope 中的屬性對應(yīng),便實現(xiàn)了type=”checkbox” 的雙向動態(tài)綁定。

但是理想跟現(xiàn)實總是相差太多,在實際操作過程中還是出現(xiàn)了問題。應(yīng)該是ng-repeat中scope作用域的問題。

經(jīng)過一番搜索、調(diào)試,自己終于將此問題解決了,效果圖如下:

AngularJS如何實現(xiàn)單選框及多選框的雙向動態(tài)綁定

核心源碼

js

var str = ""; // 原來存放選中的項 
$scope.Selected = false; //默認未選中 
var choseArr=[]; // 定義數(shù)組用于存放前端顯示 
$scope.check = function(z,x){ 
console.log("HUY:"); 
console.log(z); 
console.log("HUYU:"); 
console.log(x); 
if (x == false) { // 選中 
   str = str + z + ','; 
  } else { 
   str = str.replace(z + ',', ''); // 取消選中 
  } 
  choseArr = (str.substr(0,str.length-1)).split(','); 
 console.log("HY:"); 
 console.log(choseArr); 
 $scope.number_request = choseArr.length; // 前端顯示所選數(shù)量 
 $scope.content_request = choseArr; // 前端顯示所選請求ID 
};

Html

<tr ng-repeat="item in querydata"> 
<td ng-bind="$index+1">1</td> 
 <td><a ui-sref="#">{{item.postid}}</a></td> 
  <td>{{item.medname}}</td> 
  <td>{{item.medfact}}</td> 
  <td>{{item.medcnt}}</td>  
  <td>{{item.remark}}</td>   
  <td>{{item.tel}}</td>   
  <td>{{item.post_time}}</td> 
  <td><input id={{item.postid}} type="checkbox" ng-model="Selected" ng-click="check(item.postid,Selected)" /></td>   
</tr>

感謝各位的閱讀!關(guān)于“AngularJS如何實現(xiàn)單選框及多選框的雙向動態(tài)綁定”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI