本帖最后由 jskj 于 2017-3-29 10:55 编辑
我在用Angular2实现combobox组件时,遇到这样的问题:
后台代码是:
- import { Component, Inject } from "@angular/core";
- @Component({
- selector: 'input-app',
- templateUrl: '/view/myInput.component.html'
- })
- export class InputComponent {
- abc = [{"id":"IN_JOB","text":"在职"},{"id":"OUT_JOB","text":"离职"}];
- abc1 = ["在职","离职"];
- }
复制代码 前台的myInput.component.html页面代码是:
- <div>我是input页面</div>
- <wj-combo-box [itemsSource]="abc" [displayMemberPath]="text" [selectedValuePath]="id"></wj-combo-box>
复制代码 但是,页面中的combobox组件没有把数据正确地显示出来:
请问,这个wj-combo-box标签要怎样配置?
|