如何使用Angular 2+绑定到数据属性? [英] How to bind to a data attribute using Angular 2+?

查看:64
本文介绍了如何使用Angular 2+绑定到数据属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用一个数据表,该数据表主要是通过在线找到的css创建的.在其中一列中,有一个CSS数据属性"data-title",该属性分配了一个字符串.

I am using a data table created mostly with css that I found online. In one of the columns there is a css data attribute "data-title" which is assigned a string.

<td data-title="someString">

当我输入字符串时,列内的样式将按预期工作.当我尝试绑定到对象字符串时,绑定无法正常工作.我尝试过

When I enter a string, the styling inside the column works as expected. When I try to bind to an objects string, the binding doesn't work like I would expect. I tried

<td data-title="object.someString">

仅显示文字'object.someString',而我尝试了

which just displays literal 'object.someString' and I tried

<td data-title="{{object.someString}}">

不显示任何内容(空白).知道为什么我的绑定在这里不起作用吗?

which displays nothing (blank). Any idea why my binding isn't working here?

CSS:

.responsive-table tbody td[data-title]:before {
  content: attr(data-title);
  float: left;
  font-size: .9em;
  color: #565248;
}

@media (min-width: 48em) {
  .responsive-table tbody td[data-title]:before {
    content: none;
  }
}

推荐答案

Angular 2不会使用更简单的{{ }}语法绑定到data-属性,因为它试图将它们映射到DOM属性,并且没有data-title的DOM属性(看来Angular2还不够聪明,无法使用dataset-除非我缺少某些东西).

Angular 2 doesn't bind to data- attributes using the simpler {{ }} syntax because it tries to map them to DOM properties, and there isn't a DOM property for data-title (and it seems Angular2 isn't smart enough to use dataset yet - unless I'm missing something).

因此要绑定到data-属性,您需要使用attr.data-title={{}}[attr.data-...]=""语法.请参阅以下质量检查:角度2数据属性

So to bind to data- attributes you need to use the attr.data-title={{}} or [attr.data-...]="" syntax. See this QA: Angular 2 data attributes

<td [attr.data-title]="object.someString">

或者:

<td attr.data-title="{{object.someString}}">

这篇关于如何使用Angular 2+绑定到数据属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆