我一直在尝试找到如何将Select2集成到角度2组件中的演示/示例。
我的最终目标是使用select 2 ajax功能填充下拉列表,因为我开始在选择框中输入https://select2.github.io/examples.html#data-ajax
到目前为止,我的谷歌忍者权力让我失望:(
select2集成的失败示例......还有其他建议吗?
答案 0 :(得分:3)
当我开始寻找Angular2中的Select2多下拉示例时,我无法找到我想要的那种。我意识到有时谷歌忍者的力量并不起作用。我必须自己写。不过,我想分享一下,不要让谷歌忍者再次失败。 :)
plunker here to see the working demo
这样做的核心是将select2包装在角度分量中。
export class DummySelect {
constructor(private id: string){
$(id).select2({
width: '100%',
ajax: {
url: 'https://api.github.com/search/repositories',
datatype: 'json',
delay: 250,
data: function(params: any){
return {
q: params.term
};
},
processResults: function(data:any, params: any){
return {
results:
data.items.map(function(item) {
return {
id: item.id,
text: item.full_name
};
}
)};
},
cache: true
},
placeHolder: 'Search...',
minimumInputLength: 2
})
}
getSelectedValues(private id: string){
return $(id).val();
}
}
答案 1 :(得分:0)
让我们看看我是如何运作select2的。我的目的是初始化select2并添加_ngcontent-
属性以允许在我的范围内通过scss设置样式。
HTML:
<select multiple="multiple" style="display: none;">
<option *ngFor="#item of people" [value]="item.id">
{{item.name}}
</option>
</select>
在ngAfterViewInit
上的TypeScript中初始化:
ngAfterViewInit()
{
var element = (<any>$('select')).select2().siblings('.select2-container')[0];
var attribute = ObjectHelper.setElementContentAttribute(this.m_elementRef.nativeElement, element, true);
}
特殊的魔法功能是将_ngcontent
属性克隆到孩子身上。非常适用于许多第三方库,其中生成了一些动态内容:
public static getAngularElementTag(element: Element): string
{
var attrs = [].filter.call(element.attributes, at => /^_nghost-/.test(at.name));
if (attrs.length == 0)
{
return null;
}
return attrs[0].name.replace("_nghost-", "_ngcontent-");
}
public static setElementContentAttribute(hostElement: Element, targetElement: Element, setRecursive?: boolean): string
{
var attribute = this.getAngularElementTag(hostElement);
setRecursive = (setRecursive !== undefined) ? setRecursive : false;
if (attribute !== null)
{
this._setElementContentAttribute(targetElement, setRecursive, attribute);
return attribute;
}
else
{
return null;
}
}
private static _setElementContentAttribute(targetElement: Element, recursive: boolean, attribute) {
targetElement.setAttribute(attribute, '');
if (recursive) {
for (var i = 0; i < targetElement.childElementCount; i++) {
this._setElementContentAttribute(<Element>targetElement.childNodes[i], recursive, attribute);
}
}
}
它只是为输入元素设置样式。对于动态添加的元素(选择,选择器),您可能需要捕获一些事件并再次发挥魔力。