javascript-AngularJS:如何翻译md占位符?

我有一个使用AngularJS的非常简单的datepicker,我想给它一个占位符,以便使用AngularJS转换它(就像我通常在我的项目中一样).

这是我的HTML代码:

<div flex class="layout-row">
        <md-datepicker ng-model="vm.calendarEvent.start" ng-model-options="{ timezone: 'UTC' }" md-placeholder="Une date" translate translate-md-placeholder="PROF.SHARE.DUE">
        </md-datepicker>
</div>

这样做会引发此错误:

Error: [$compile:multidir] Multiple directives [mdDatepicker (module:
material.components.datepicker), translate (module:
pascalprecht.translate)] asking for new/isolated scope on:

< md-datepicker class=”ng-pristine ng-untouched ng-valid
_md-datepicker-has-triangle-icon” ng-model=”vm.calendarEvent.start” ng-model-options=”{ timezone: ‘UTC’ }” md-placeholder=”Une date”
translate=”” translate-md-placeholder=”PROF.SHARE.DUE”>

解决方法:

我认为您正在md-placeholder上寻找此内联翻译:

<div flex class="layout-row">
  <md-datepicker ng-model="vm.calendarEvent.start" 
                 ng-model-options="{ timezone: 'UTC' }" 
                 md-placeholder="{{ 'PROF.SHARE.DUE' | translate  }}">
  </md-datepicker>
</div>
上一篇:android-DatePickerDialog如果打开则显示错误的日期,然后该日期在其他地方更改


下一篇:javascript-从.classA样式到.classB样式可以轻松动画吗?