zoukankan      html  css  js  c++  java
  • angular 报错笔记

    1、错误信息:

    Failed to instantiate module app due to:
    Error: [$injector:unpr] http://errors.angularjs.org/1.5.8/$injector/unpr?p0=showE...
        at http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:6:412
        at http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:43:174
        at d (http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:40:432)
        at e (http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:41:158)
        at Object.invoke (http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:41:243)
        at d (http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:39:418)
        at http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:40:19
        at q (http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:7:355)
        at g (http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:39:319)
        at cb (http://localhost:6664/hospital/assets/js/angular.min.js?v=1499753083736:43:336


    2、错误信息
    $apply already in progress
    HTML代码:
      <input type="checkbox" id="check" ng-checked="checkVal" ng-click="select($event)">
      <input type="checkbox" id="check1" class="checked" ng-click="toTrue($event,'dd')">
    JS代码:
    var array = [];
    $scope.checkVal = true;
    $scope.checkVal1 = false;

    $scope.select = function (event) {
    var ele1 = document.getElementById('check1');
    ele1.click();
    };

    $scope.toTrue = function (event,val) {
    if(event.target.checked){
    array.push(val);

    }else{
    array.push('0');
    }
    }

    点击第一个checkbox就会报上面的错误信息,但是如果我把第二个checkbox的点击事件去掉就不会报错,哪位大神可以帮我解释一下原因吗?

     

     
    如果您觉得本文对你有用,不妨帮忙点个赞,为枯燥的学习生活增加一点动力
  • 相关阅读:
    大文件上传
    zabbix接口
    Vue 在不同的环境使用不同的接口地址
    Vue发布流程
    RabbitMQ集群一些使用细节
    Watcher 系统整体流程图
    监控系统各个模块部署
    deepin安装node和npm最新
    google安装json插件
    数据库访问性能优化 Oracle
  • 原文地址:https://www.cnblogs.com/zq123/p/7150243.html
Copyright © 2011-2022 走看看