checkbox & ng-show

摘要:checkbox & ng-show

 <label><input type="checkbox" ng-model="IsDebug">啟用偵錯</label> 
  <pre ng-show="IsDebug">{{carts|json}}</pre> 
 
 
===============================================JS
$scope.IsDebug = true;