1
私は各アイテムの画像を私の選択オプションに表示したいと思います。どのように角度で選択して画像を置くことができますか?
これは選択と角度の例です - どのようにして画像を選択して表示できますか?
$scope.myModel = 1;
$scope.myOptions = [
{id: 1, title: 'Spectrometer', img:'1.jpg'},
{id: 2, title: 'Star Chart', img:'2.jpg'},
{id: 3, title: 'Laser Pointer', img:'2.jpg'}
];
$scope.myConfig = {
create: true,
valueField: 'id',
labelField: 'title',
delimiter: '|',
placeholder: 'Pick something',
onInitialize: function(selectize){
// receives the selectize object as an argument
},
// maxItems: 1
};
<selectize config='myConfig' options='myOptions' ng-model="myModel"></selectize>
もし私がこれを持っていたら、どのようにイメージを渡すことができますか?