gpt4 book ai didi

angularjs - 带有图像或 svg 的 Angular Material md-select

转载 作者:行者123 更新时间:2023-12-03 21:05:16 24 4
gpt4 key购买 nike

我正在使用有 Angular 的 Material ,我想使用 md-select 但使用图像/svg;我将 md-option 与 ng-repeat 一起使用,选项列表有效,但是当我选择某些内容时,我会看到文本。

可行吗?

谢谢

<md-select ng-model="mkt.bookmaker" placeholder="Select a bookmaker">
<md-option ng-value="opt" ng-repeat="opt in mkt.selected.matchInfo.bookmakers">
<md-icon md-svg-src="{{ opt.logo }}"></md-icon>{{ opt.name }}
</md-option>
</md-select>


这里有一些截图:
enter image description here
enter image description here

最佳答案

我在 angular material github 中找到了使用 md-select 的好方法

Here解决方案的plunker,以及预览。

Controller :

var app = angular.module('DemoApp', ['ngMaterial']);

app.controller('MainCtrl', function($scope) {

$scope.options = [
{
name: 'Rome',
size: '200€',
image: 'http://lorempixel.com/120/60/cats/'
},
{
name: 'Naples',
size: '230€',
image: 'http://lorempixel.com/120/60/food/'
}
];

$scope.currOption = $scope.options[1];

$scope.updateData = function(){
$scope.options = [
{
name: 'London',
size: '400€',
image: 'http://lorempixel.com/60/60/abstract/'
},
{
name: 'Paris',
size: '900€',
image: 'http://lorempixel.com/60/60/nature/'
},
{
name: 'Rome',
size: '200€',
image: 'http://lorempixel.com/60/60/sport/'
},
{
name: 'Naples',
size: '230€',
image: 'http://lorempixel.com/60/60'
}
];

$scope.currOption = $scope.options[1];
}

});

我的 Html:
    <md-select data-ng-model="currOption">
<md-select-label><img src="{{ currOption.image }}" /></md-select-label>
<md-option data-ng-value="opt" data-ng-repeat="opt in options"><img src="{{ opt.image }}" /></md-option>
</md-select>

关于angularjs - 带有图像或 svg 的 Angular Material md-select,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29876280/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com