angular1.5使用ui.select2

必须下载安装 ui.select2 select2(多选)
module中配置 ui.select2
1、 主界面 控制器中定义了name变量

{{$ctrl.name}}

2、 子界面component

app.component("selectComponent", {
    restrict: 'E',
    bindings: {
        hero: '='
    },
    templateUrl: './select.html',
    controller: SelectController
});

3、子界面controller

class SelectController {
    constructor() {
        "ngInject";
        // 初始化选择的值为空
        this.hero = "";
        this.groupSetup = {
            multiple: true,
            formatSearching: '查询内容',
            formatNoMatches: '请选择'
        };
    }
}

4、子界面

你可能感兴趣的:(select,angular.js)