gpt4 book ai didi

javascript - Aurelia:绑定(bind)自定义元素的 textContent?

转载 作者:搜寻专家 更新时间:2023-11-01 05:29:40 26 4
gpt4 key购买 nike

我正在 Aurelia 中编写一个非常简单的数据网格自定义元素,部分是为了我需要的功能,部分是为了学习 Aurelia。一切顺利,但我一直在研究如何获取自定义组件中元素的内容。

这是我的代码,问题的其余部分如下:

数据网格.js

import {inject, bindable} from 'aurelia-framework';
import _ from 'underscore';

export class DataGridCustomElement {
@bindable data = [];
@bindable height = '';

columns = [];

bind() {
this.sort(this.columns[0].property);
}

sort(property) {
if (property == this.sortProperty) {
this.sortDirection = !this.sortDirection;
}
else {
this.sortProperty = property;
this.sortDirection = true;
}
let data = _.sortBy(this.data, this.sortProperty);
if (!this.sortDirection) {
data = data.reverse()
}
this.data = data;
}
}

@inject(DataGridCustomElement)
export class DataGridColumnCustomElement {
@bindable title = '';
@bindable width = '';
@bindable property = '';

constructor(dataGrid) {
dataGrid.columns.push(this);
}
}

数据网格.html

<template>
<table class="table table-fixedheader table-condensed table-striped table-bordered">
<thead>
<tr>
<th repeat.for="column of columns" width="${column.width}"><a href="#" click.delegate="sort(column.property)">${column.title}</a></th>
</tr>
</thead>
<tbody css="height: ${height};">
<tr repeat.for="row of data">
<td repeat.for="column of columns" width="${column.width}"></td>
</tr>
</tbody>
</table>
</template>

数据网格测试.js

import {inject} from 'aurelia-framework';

export class DataGridTest {
constructor() {
this.animals = [
{
id : 3,
animal : 'Horse',
home : 'Stall'
},
{
id : 1,
animal : 'Monkey',
home : 'Tree'
},
{
id : 11,
animal : 'Dog',
home : 'House'
},
{
id : 2,
animal : 'Cat',
home : 'Internet'
},
{
id : 20,
animal : 'Hamster',
home : 'Cage'
},
];
}
}

数据网格测试.html

<template>
<require from="./data-grid"></require>
<data-grid data.bind="animals" height="300px">
<data-grid-column title="ID" property="id" width="34%">TEXT CONTENT</data-grid-column>
<data-grid-column title="Animal" property="animal" width="33%">TEXT CONTENT</data-grid-column>
<data-grid-column title="Home" property="home" width="33%">TEXT CONTENT</data-grid-column>
</data-grid>
</template>

在这段代码中,我想做的是绑定(bind) TEXT CONTENT<data-grid-column> data-grid.js#DataGridColumnCustomElement 中字段的元素.与一切正常的 title、property 和 width 属性类似,我想要元素的文本内容。

似乎我需要在类上定义一些东西才能发生这种情况,但我不知道要定义什么或在哪里看。

提前致谢

杰森

最佳答案

您需要获取对列的 DOM 元素的引用,以便获取文本内容。以下是如何做到这一点,以及其他一些调整:

import {processContent, noView} from 'aurelia-framework';

@noView() // this element doesn't need a view, it's essentially declarative data for the parent element
@processContent(false) // the templating engine doesn't need to process the content of this element, we're going to do it
@inject(DataGridCustomElement, Element) // inject the parent, and the DOM element that represents this DataGridColumn element so we can read it's textContent
export class DataGridColumnCustomElement {
@bindable title = '';
@bindable width = '';
@bindable property = '';
textContent = '';

constructor(dataGrid, element) {
this.textContent = element.textContent; // grab the textContent and store it in a class property
dataGrid.columns.push(this);
}
}

关于javascript - Aurelia:绑定(bind)自定义元素的 textContent?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35027737/

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