使用jQuery设置输入值后更新Angular模型

时间:2013-06-14 13:39:23

标签: jquery angularjs bind directive

我有这个简单的场景:

输入元素,其值由jQuery的val()方法改变。

我正在尝试使用jQuery设置的值更新角度模型。我试着编写一个简单的指令,但它并没有按照我的意愿行事。

这是指令:

var myApp = angular.module('myApp', []);
myApp.directive('testChange', function() {
    return function(scope, element, attrs) {        
        element.bind('change', function() {
            console.log('value changed');
        })
    }
})

这是jQuery部分:

$(function(){
    $('button').click(function(){
        $('input').val('xxx');
    })
})

和html:

<div ng-app="myApp">
    <div ng-controller="MyCtrl">
        <input test-change ng-model="foo" />
        <span>{{foo}}</span>
    </div>
</div>

<button>clickme</button>

这是我尝试的小提琴:
http://jsfiddle.net/U3pVM/743/

有人可以指出我正确的方向吗?

12 个答案:

答案 0 :(得分:315)

ngModel侦听“input”事件,因此要“修复”您在设置值后需要触发该事件的代码:

$('button').click(function(){
    var input = $('input');
    input.val('xxx');
    input.trigger('input'); // Use for Chrome/Firefox/Edge
    input.trigger('change'); // Use for Chrome/Firefox/Edge + IE11
});

有关此特定行为的解释,请查看我之前给出的答案:“How does AngularJS internally catch events like 'onclick', 'onchange'?


但不幸的是,这不是你遇到的唯一问题。正如其他帖子评论所指出的那样,以jQuery为中心的方法是完全错误的。有关详细信息,请查看此帖:How do I “think in AngularJS” if I have a jQuery background?)。

答案 1 :(得分:58)

希望这对某人有用。

我无法让jQuery('#myInputElement').trigger('input')事件被我的角度应用程序接收。

然而,

我能够让angular.element(jQuery('#myInputElement')).triggerHandler('input')被接听。

答案 2 :(得分:22)

我不认为这里需要jQuery。

您可以使用$watchng-click代替

<div ng-app="myApp">
  <div ng-controller="MyCtrl">
    <input test-change ng-model="foo" />
    <span>{{foo}}</span>

    <button ng-click=" foo= 'xxx' ">click me</button>
    <!-- this changes foo value, you can also call a function from your controller -->
  </div>
</div>

在您的控制器中:

$scope.$watch('foo', function(newValue, oldValue) {
  console.log(newValue);
  console.log(oldValue);
});

答案 3 :(得分:17)

您必须使用以下代码才能更新特定输入模型的范围,如下所示

$('button').on('click', function(){
    var newVal = $(this).data('val');
    $('select').val(newVal).change();

    var scope = angular.element($("select")).scope();
    scope.$apply(function(){
        scope.selectValue = newVal;
    });
});

答案 4 :(得分:14)

使用jQuery触发input事件的已接受答案对我不起作用。创建一个事件并使用本机JavaScript进行调度就可以了。

$("input")[0].dispatchEvent(new Event("input", { bubbles: true }));

答案 5 :(得分:7)

我通过在操作按钮上添加监听器来仅对控制器初始化进行了修改:

$(document).on('click', '#action-button', function () {
        $timeout(function () {
             angular.element($('#input')).triggerHandler('input');
        });
});

其他解决方案在我的案例中不起作用。

答案 6 :(得分:3)

我知道在这里回答有点迟,但也许我可以在一天之后保存一些。

我一直在处理同样的问题。一旦更新了jQuery的输入值,就不会填充模型。我尝试使用触发事件但没有结果。

这是我所做的,可以挽救你的一天。

在HTML中的脚本标记中声明一个变量。

像:

<script>
 var inputValue="";

// update that variable using your jQuery function with appropriate value, you want...

</script>

一旦你通过使用角度以下的服务来做到这一点。

  

$窗口

现在,从同一控制器范围调用的getData函数下面将为您提供所需的值。

var myApp = angular.module('myApp', []);

app.controller('imageManagerCtrl',['$scope','$window',function($scope,$window) {

$scope.getData = function () {
    console.log("Window value " + $window.inputValue);
}}]);

答案 7 :(得分:2)

我已经为jQuery编写了这个小插件,它将使.val(value)的所有调用更新角元素(如果存在):

(function($, ng) {
  'use strict';

  var $val = $.fn.val; // save original jQuery function

  // override jQuery function
  $.fn.val = function (value) {
    // if getter, just return original
    if (!arguments.length) {
      return $val.call(this);
    }

    // get result of original function
    var result = $val.call(this, value);

    // trigger angular input (this[0] is the DOM object)
    ng.element(this[0]).triggerHandler('input');

    // return the original result
    return result; 
  }
})(window.jQuery, window.angular);

在jQuery之后弹出这个脚本,而angular.js和val(value)更新现在应该很好。


缩小版:

!function(n,t){"use strict";var r=n.fn.val;n.fn.val=function(n){if(!arguments.length)return r.call(this);var e=r.call(this,n);return t.element(this[0]).triggerHandler("input"),e}}(window.jQuery,window.angular);

示例:

// the function
(function($, ng) {
  'use strict';
  
  var $val = $.fn.val;
  
  $.fn.val = function (value) {
    if (!arguments.length) {
      return $val.call(this);
    }
    
    var result = $val.call(this, value);
    
    ng.element(this[0]).triggerHandler('input');
    
    return result;
    
  }
})(window.jQuery, window.angular);

(function(ng){ 
  ng.module('example', [])
    .controller('ExampleController', function($scope) {
      $scope.output = "output";
      
      $scope.change = function() {
        $scope.output = "" + $scope.input;
      }
    });
})(window.angular);

(function($){  
  $(function() {
    var button = $('#button');
  
    if (button.length)
      console.log('hello, button');
    
    button.click(function() {
      var input = $('#input');
      
      var value = parseInt(input.val());
      value = isNaN(value) ? 0 : value;
      
      input.val(value + 1);
    });
  });
})(window.jQuery);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div ng-app="example" ng-controller="ExampleController">
  <input type="number" id="input" ng-model="input" ng-change="change()" />
  <span>{{output}}</span>
  <button id="button">+</button>
</div>

答案 8 :(得分:2)

如果您使用的是IE,则必须使用:input.trigger(“change”);

答案 9 :(得分:2)

设置值后

添加.change()

例如:('id').val.('value').change();

也不要忘记在html中添加onchangeng-change标记

答案 10 :(得分:0)

我这样做是为了能够使用Vanilla / jQuery从外部更新ngModel的值:

function getScope(fieldElement) {
    var $scope = angular.element(fieldElement).scope();
    var nameScope;
    var name = fieldElement.getAttribute('name');
    if($scope) {
        if($scope.form) {
            nameScope = $scope.form[name];
        } else if($scope[name]) {
            nameScope = $scope[name];
        }
    }
    return nameScope;
}

function setScopeValue(fieldElement, newValue) {
    var $scope = getScope(fieldElement);
    if($scope) {
        $scope.$setViewValue(newValue);
        $scope.$validate();
        $scope.$render();
    }
}

setScopeValue(document.getElementById("fieldId"), "new value");

答案 11 :(得分:0)

不是OP要求的,但是对于任何可能写出用户脚本并通过输入字段并填写所需详细信息的人来说。没有任何东西(完全)对我有用,但最终设法以这种方式完成了该任务:

var el = $('#sp_formfield_fw_ip');
el.val("some value");
angular.element(el).triggerHandler('focus');
angular.element(el).triggerHandler('input');
angular.element(el).triggerHandler('change');
angular.element(el).triggerHandler('blur');

打开开发人员工具,并检查input字段中是否有添加的事件。在那里,我发现了所有这些文件(以我为例):focusinputchangeblur