我正面临关于mdl-textfield
的行为的问题
在下面的 plnkr 上,按照以下步骤操作:
- 点击“工作组”
- 单击一项上的“复制”
- 看看最后出现的新文本字段与 ngModel 关联(angular.copy)但是文本字段的行为很奇怪,即使有一个值,标签也不会浮动,但是如果您单击文本字段,它会按预期浮动. 如果您修改该字段,则行为仍然存在,但如果您在没有任何修改的情况下退出它,则标签会返回覆盖。
http://plnkr.co/edit/MUI2iBslIH9jd4fgEQPL?p=preview
ngView
内容
<div data-ng-controller="MainCtrl">
<section data-ng-repeat="fo in foo">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" id="sample1" data-ng-model="fo.bar"/>
<label class="mdl-textfield__label" for="sample1">{{fo.bar}}</label>
<span ng-if="$last" ng-init="update()"></span>
</div>
<button ng-click="focopy(fo)">Copy</button>
</section>
<div data-ng-show="datacopy.edit" class="input-field">
<input type="text" id="ex1" data-ng-model="datacopy.bar" />
<label for="ex1">label</label>
</div>
</div>
角模块
var app=angular.module('plunker', ['ngRoute'])
app.config(function($routeProvider){
$routeProvider
//Root URL
.when('/',{template:'<p>Coucou</p>'})
.when('/groups',{templateUrl:'groups.html'})
.when('/groupsnotworking',{templateUrl:'groupsnotworking.html'})
});
app.controller('MainCtrl', function($scope,$timeout) {
$scope.foo = [
{bar: 'world'},{bar:'toto'},{bar:'toto'}
];
$scope.groups=$timeout(function(){
$scope.groups=$scope.foo
},1000);
$scope.update=function(){
componentHandler.upgradeAllRegistered();
};
$scope.datacopy={};
$scope.focopy=function(data){
$scope.datacopy=angular.copy(data);
$scope.datacopy.edit=true;
};
});
希望它足够清楚。我试图将其发布在 Material Design lite 的 github 上,认为这是一个错误,但我在这里被踢了...谢谢