select2、ng-model 和 angular
select2, ng-model and angular
使用 jquery-select2(not ui-select)和 angular,我正在尝试设置值到 ng 模型。
我试过使用 $watch
和 ng-change
,但是 none 似乎在 select 使用 select2 处理项目后触发。
很遗憾,我使用的是购买的模板,无法使用angular-ui。
HTML:
<input type="hidden" class="form-control select2remote input-medium"
ng-model="contact.person.id"
value="{{ contact.person.id }}"
data-display-value="{{ contact.person.name }}"
data-remote-search-url="api_post_person_search"
data-remote-load-url="api_get_person"
ng-change="updatePerson(contact, contact.person)">
客户端控制器:
$scope.updatePerson = function (contact, person) {
console.log('ng change');
console.log(contact);
console.log(person);
} // not firing
$scope.$watch("client", function () {
console.log($scope.client);
}, true); // not firing either
JQuery 积分:
var handleSelect2RemoteSelection = function () {
if ($().select2) {
var $elements = $('input[type=hidden].select2remote');
$elements.each(function(){
var $this = $(this);
if ($this.data('remote-search-url') && $this.data('remote-load-url')) {
$this.select2({
placeholder: "Select",
allowClear: true,
minimumInputLength: 1,
ajax: { // instead of writing the function to execute the request we use Select2's convenient helper
url: Routing.generate($this.data('remote-search-url'), {'_format': 'json'}),
type: 'post',
dataType: 'json',
delay: 250,
data: function (term, page) {
return {
query: term, // search term
};
},
results: function (data, page) { // parse the results into the format expected by Select2.
return {
results: $.map(data, function (datum) {
var result = {
'id': datum.id,
'text': datum.name
};
for (var prop in datum) {
if (datum.hasOwnProperty(prop)) {
result['data-' + prop] = datum[prop];
}
}
return result;
})
}
}
},
initSelection: function (element, callback) {
// the input tag has a value attribute preloaded that points to a preselected movie's id
// this function resolves that id attribute to an object that select2 can render
// using its formatResult renderer - that way the movie name is shown preselected
var id = $(element).val(),
displayValue = $(element).data('display-value');
if (id && id !== "") {
if (displayValue && displayValue !== "") {
callback({'id': $(element).val(), 'text': $(element).data('display-value')});
} else {
$.ajax(Routing.generate($this.data('remote-load-url'), {'id': id, '_format': 'json'}), {
dataType: "json"
}).done(function (data) {
callback({'id': data.id, 'text': data.name});
});
}
}
},
});
}
});
}
};
如有任何建议,我们将不胜感激! :)
更新
我已经设法将 a plunk 放在一起,这似乎同样重现了问题 - 现在看起来好像只有在第一次更改值时才会触发 ng-watch 和 $watch 事件。
尽管如此,在我的代码中(以及在添加进一步的复杂性时,例如动态添加和从集合中删除),它似乎甚至没有触发一次。
同样,非常感谢指向正确方向(或实际上任何方向)的指针!
您的示例存在许多问题。我不确定我是否能够提供 "answer",但希望以下建议和解释对您有所帮助。
首先,你们是"mixing"jQuery和Angular。一般来说,这真的行不通。例如:
在script.js,你运行
$(document).ready(function() {
var $elements = $('input[type=hidden].select2remote');
$elements.each(function() {
//...
});
});
当 DOM 初始准备就绪时,此代码将执行一次 运行。它将 select 使用 select2remote class 隐藏输入元素 当前在 DOM 中并初始化 select2 个插件。
问题是在这个函数 运行 之后添加的任何新的 input[type=hidden].select2remote 元素根本不会被初始化。例如,如果您异步加载数据并填充 ng-repeat,就会发生这种情况。
解决方法是将 select2 初始化代码移动到一个指令,并将该指令放在每个输入元素上。删节后,该指令可能如下所示:
.directive('select2', function() {
return {
restrict: 'A',
require: 'ngModel',
link: function(scope, element, attr, ngModel) {
//$this becomes element
element.select2({
//options removed for clarity
});
element.on('change', function() {
console.log('on change event');
var val = $(this).value;
scope.$apply(function(){
//will cause the ng-model to be updated.
ngModel.setViewValue(val);
});
});
ngModel.$render = function() {
//if this is called, the model was changed outside of select, and we need to set the value
//not sure what the select2 api is, but something like:
element.value = ngModel.$viewValue;
}
}
}
});
抱歉,我对 select2 不够熟悉,无法了解用于获取和设置控件当前值的 API。如果您在评论中提供给我,我可以修改示例。
您的标记将更改为:
<input select2 type="hidden" class="form-control select2remote input-medium"
ng-model="contact.person.id"
value="{{ contact.person.id }}"
data-display-value="{{ contact.person.name }}"
data-remote-search-url="api_post_person_search"
data-remote-load-url="api_get_person"
ng-change="updatePerson(contact, contact.person)">
执行此指令后,您可以删除整个 script.js。
在您的控制器中,您有以下内容:
$('.select2remote').on('change', function () {
console.log('change');
var value = $(this).value;
$scope.$apply(function () {
$scope.contact.person.id = value;
});
});
这里有两个问题:
首先,您在控制器中使用 jQuery,您确实不应该这样做。
其次,这行代码将在 entire application 中的 select2remote class 的每个元素上触发一个 change 事件,而 DOM 控制器启动时.
很可能由 Angular 添加的元素(即通过 ng-repeat)不会在其上注册更改侦听器,因为它们将被添加到 DOM 之后控制器被实例化(在下一个摘要周期)。
此外,控制器范围外的具有更改事件的元素将修改控制器 $scope 的状态。同样,解决方案是将此功能移动到指令中并依赖 ng-model 功能。
请记住,无论何时离开 Angular 的上下文(即,如果您正在使用 jQuery 的 $.ajax 功能),您都必须使用 scope.$apply( ) 重新进入 Angular 的执行上下文。
希望这些建议对您有所帮助。
使用 jquery-select2(not ui-select)和 angular,我正在尝试设置值到 ng 模型。
我试过使用 $watch
和 ng-change
,但是 none 似乎在 select 使用 select2 处理项目后触发。
很遗憾,我使用的是购买的模板,无法使用angular-ui。
HTML:
<input type="hidden" class="form-control select2remote input-medium"
ng-model="contact.person.id"
value="{{ contact.person.id }}"
data-display-value="{{ contact.person.name }}"
data-remote-search-url="api_post_person_search"
data-remote-load-url="api_get_person"
ng-change="updatePerson(contact, contact.person)">
客户端控制器:
$scope.updatePerson = function (contact, person) {
console.log('ng change');
console.log(contact);
console.log(person);
} // not firing
$scope.$watch("client", function () {
console.log($scope.client);
}, true); // not firing either
JQuery 积分:
var handleSelect2RemoteSelection = function () {
if ($().select2) {
var $elements = $('input[type=hidden].select2remote');
$elements.each(function(){
var $this = $(this);
if ($this.data('remote-search-url') && $this.data('remote-load-url')) {
$this.select2({
placeholder: "Select",
allowClear: true,
minimumInputLength: 1,
ajax: { // instead of writing the function to execute the request we use Select2's convenient helper
url: Routing.generate($this.data('remote-search-url'), {'_format': 'json'}),
type: 'post',
dataType: 'json',
delay: 250,
data: function (term, page) {
return {
query: term, // search term
};
},
results: function (data, page) { // parse the results into the format expected by Select2.
return {
results: $.map(data, function (datum) {
var result = {
'id': datum.id,
'text': datum.name
};
for (var prop in datum) {
if (datum.hasOwnProperty(prop)) {
result['data-' + prop] = datum[prop];
}
}
return result;
})
}
}
},
initSelection: function (element, callback) {
// the input tag has a value attribute preloaded that points to a preselected movie's id
// this function resolves that id attribute to an object that select2 can render
// using its formatResult renderer - that way the movie name is shown preselected
var id = $(element).val(),
displayValue = $(element).data('display-value');
if (id && id !== "") {
if (displayValue && displayValue !== "") {
callback({'id': $(element).val(), 'text': $(element).data('display-value')});
} else {
$.ajax(Routing.generate($this.data('remote-load-url'), {'id': id, '_format': 'json'}), {
dataType: "json"
}).done(function (data) {
callback({'id': data.id, 'text': data.name});
});
}
}
},
});
}
});
}
};
如有任何建议,我们将不胜感激! :)
更新
我已经设法将 a plunk 放在一起,这似乎同样重现了问题 - 现在看起来好像只有在第一次更改值时才会触发 ng-watch 和 $watch 事件。 尽管如此,在我的代码中(以及在添加进一步的复杂性时,例如动态添加和从集合中删除),它似乎甚至没有触发一次。
同样,非常感谢指向正确方向(或实际上任何方向)的指针!
您的示例存在许多问题。我不确定我是否能够提供 "answer",但希望以下建议和解释对您有所帮助。
首先,你们是"mixing"jQuery和Angular。一般来说,这真的行不通。例如:
在script.js,你运行
$(document).ready(function() {
var $elements = $('input[type=hidden].select2remote');
$elements.each(function() {
//...
});
});
当 DOM 初始准备就绪时,此代码将执行一次 运行。它将 select 使用 select2remote class 隐藏输入元素 当前在 DOM 中并初始化 select2 个插件。
问题是在这个函数 运行 之后添加的任何新的 input[type=hidden].select2remote 元素根本不会被初始化。例如,如果您异步加载数据并填充 ng-repeat,就会发生这种情况。
解决方法是将 select2 初始化代码移动到一个指令,并将该指令放在每个输入元素上。删节后,该指令可能如下所示:
.directive('select2', function() {
return {
restrict: 'A',
require: 'ngModel',
link: function(scope, element, attr, ngModel) {
//$this becomes element
element.select2({
//options removed for clarity
});
element.on('change', function() {
console.log('on change event');
var val = $(this).value;
scope.$apply(function(){
//will cause the ng-model to be updated.
ngModel.setViewValue(val);
});
});
ngModel.$render = function() {
//if this is called, the model was changed outside of select, and we need to set the value
//not sure what the select2 api is, but something like:
element.value = ngModel.$viewValue;
}
}
}
});
抱歉,我对 select2 不够熟悉,无法了解用于获取和设置控件当前值的 API。如果您在评论中提供给我,我可以修改示例。
您的标记将更改为:
<input select2 type="hidden" class="form-control select2remote input-medium"
ng-model="contact.person.id"
value="{{ contact.person.id }}"
data-display-value="{{ contact.person.name }}"
data-remote-search-url="api_post_person_search"
data-remote-load-url="api_get_person"
ng-change="updatePerson(contact, contact.person)">
执行此指令后,您可以删除整个 script.js。
在您的控制器中,您有以下内容:
$('.select2remote').on('change', function () {
console.log('change');
var value = $(this).value;
$scope.$apply(function () {
$scope.contact.person.id = value;
});
});
这里有两个问题:
首先,您在控制器中使用 jQuery,您确实不应该这样做。
其次,这行代码将在 entire application 中的 select2remote class 的每个元素上触发一个 change 事件,而 DOM 控制器启动时.
很可能由 Angular 添加的元素(即通过 ng-repeat)不会在其上注册更改侦听器,因为它们将被添加到 DOM 之后控制器被实例化(在下一个摘要周期)。
此外,控制器范围外的具有更改事件的元素将修改控制器 $scope 的状态。同样,解决方案是将此功能移动到指令中并依赖 ng-model 功能。
请记住,无论何时离开 Angular 的上下文(即,如果您正在使用 jQuery 的 $.ajax 功能),您都必须使用 scope.$apply( ) 重新进入 Angular 的执行上下文。
希望这些建议对您有所帮助。