我想使用jquery
中的Angular
根据我的数据输入创建一个表。我是jquery
的新手,所以这可能是我忘记了一些愚蠢的东西,但是我不能说是什么。
不幸的是,当我执行ng serve
时,什么都没发生,只有空白页。
我得到了以下代码:
HTML
<body onLoad="createHeaders('#dataTable')">
<table #dataTable >
</table>
</body>
TS
import { Component, OnInit } from '@angular/core';
import { MOCKUP } from '../Table';
import * as $ from "jquery";
@Component({
selector: 'app-tabular',
templateUrl: './tabular.component.html',
styleUrls: ['./tabular.component.css']
})
export class TabularComponent implements OnInit {
constructor() { }
ngOnInit() {
}
//this is where i want to work in the future, lets just forget about that for the moment
buildHTMLTableCodeFromTree(selector) {
//var header = this.createHeaders(selector, MOCKUP.Head);
$(selector).append("<td>test</td>");
}
createHeaders(selector) {
var headObject = MOCKUP.Head;
console.log("Er ist in der Methode!");
var value;
var colspan;
var entry = "";
for (var j = 0; j < headObject.length; j++) {
entry = entry + "<tr>";
for (var i = 0; i < headObject[j].length; i++) {
value = headObject[j][i].value;
colspan = headObject[j][i].colspan;
entry = entry + "<th colSpan='" + colspan + "'>" + value + "</th>";
}
entry = entry + "</tr>";
}
$("dataTable").append(entry);
}
}
表头模型:
export const MOCKUP = {
"Table": "tab1",
"Head": [
[
{
"value": "",
"colspan": 1,
},
{
"value": "2018",
"colspan": 2
},
{
"value": "2019",
"colspan": 6
}
],
[
{
"value": "",
"colspan": 1,
},
{
"value": "December",
"colspan": 2
},
{
"value": "January",
"colspan": 2
},
{
"value": "February",
"colspan": 2
},
{
"value": "March",
"colspan": 2
}
],
[
{
"value": "",
"colspan": 1,
},
{
"value": "Foo",
"colspan": 1,
},
{
"value": "Boo",
"colspan": 1,
},
{
"value": "Foo",
"colspan": 1,
},
{
"value": "Boo",
"colspan": 1,
},
{
"value": "Foo",
"colspan": 1,
},
{
"value": "Boo",
"colspan": 1,
},
{
"value": "Foo",
"colspan": 1,
},
{
"value": "Boo",
"colspan": 1,
}
]
],
"Body": [
[
{
"value": "Total",
"entryID": -1
},
{
"value": "10",
"entryID": 33
},
{
"value": "24",
"entryID": 34
},
{
"value": "66",
"entryID": 35
},
{
"value": "0",
"entryID": 36
},
{
"value": "23",
"entryID": 37
},
{
"value": "24",
"entryID": 38
},
{
"value": "21",
"entryID": 39
},
{
"value": "10",
"entryID": 40
}
],
[
{
"value": "Row1",
"entryID": -1
},
{
"value": "10",
"entryID": 1
},
{
"value": "12",
"entryID": 2
},
{
"value": "0",
"entryID": 3
},
{
"value": "0",
"entryID": 4
},
{
"value": "0",
"entryID": 5
},
{
"value": "0",
"entryID": 6
},
{
"value": "0",
"entryID": 7
},
{
"value": "0",
"entryID": 8
}
]
]
}
我希望它成为三行标题(年份,月份和HEAD
数组的最后一个值中的最后一行)。我已经尝试根据
我也尝试按照here所述进行操作(因此,对于$("#dataTable").append(entry);
来说,但这不会改变结果。
编辑:确实存在一个错误,不是在执行ng serve
的命令提示符中,而是在Chrome控制台中的一个错误:
未捕获的ReferenceError:未定义createHeaders 在onload(localhost /:13)
很明显,他在执行HTML代码时未实例化该方法。
编辑:为什么要尝试使用jquery? 注意:这对于问题本身可能不是必需的,只是作为一种解释
这是我的数据示例:
和所需的输出:
现在输出必须是可编辑的,并且这些编辑应保存在我的数据库中(单击按钮时,这就是为什么我将entryID保存在我的模型中的原因)。
对于从后端->前端的通信,我想到了原始数据的上述格式(这就是为什么我保存一个entryID的原因):
答案 0 :(得分:1)
但是,如果您想要真正快速的东西,最好不要使用jQuery,并尽可能多地重用您生成的对象。
<table id="dataTable"></table>
const MOCKUP = [{
type: 'thead',
children: [{
type: 'tr',
dataset: {id: 1},
children: [
{type: 'th', textContent: '', colSpan: 1, contentEditable: true},
{type: 'th', textContent: '2018', colSpan: 2, contentEditable: true},
{type: 'th', textContent: '2019', colSpan: 6, contentEditable: true}
]
}, {
type: 'tr',
dataset: {id: 2},
children: [
{type: 'th', textContent: '', colSpan: 1, contentEditable: true},
{type: 'th', textContent: 'December', colSpan: 2, contentEditable: true},
{type: 'th', textContent: 'January', colSpan: 2, contentEditable: true},
{type: 'th', textContent: 'February', colSpan: 2, contentEditable: true},
{type: 'th', textContent: 'March', colSpan: 2, contentEditable: true}
]
}, {
type: 'tr',
dataset: {id: 3},
children: [
{type: 'th', textContent: '', colSpan: 1, contentEditable: true},
{type: 'th', textContent: 'Foo', colSpan: 1, contentEditable: true},
{type: 'th', textContent: 'Boo', colSpan: 1, contentEditable: true},
{type: 'th', textContent: 'Foo', colSpan: 1, contentEditable: true},
{type: 'th', textContent: 'Boo', colSpan: 1, contentEditable: true},
{type: 'th', textContent: 'Foo', colSpan: 1, contentEditable: true},
{type: 'th', textContent: 'Boo', colSpan: 1, contentEditable: true},
{type: 'th', textContent: 'Foo', colSpan: 1, contentEditable: true},
{type: 'th', textContent: 'Boo', colSpan: 1, contentEditable: true}
]
}]
}];
const cache = {};
function assign(destination, source) {
for (const key in source) {
if (source.hasOwnProperty(key)) {
const value = source[key];
if (typeof value === 'object') {
assign(destination[key], value);
} else if (null != destination) {
destination[key] = value;
}
}
}
return destination;
}
function get(data, pathStr) {
const path = pathStr.split('.');
let i = path.length;
while (--i) {
data = data[path[i]];
}
return data;
}
function disassemble(target) {
let element;
while ((element = target.lastElementChild)) {
target.removeChild(element);
disassemble(element);
const type = element.tagName.toLowerCase();
const c = cache[type] || (cache[type] = []);
c.push(element);
}
}
function assemble(target, path, data = []) {
const fragment = document.createDocumentFragment();
data.forEach(({type, children, ...config}, i) => {
const element = assign(cache[type] && cache[type].pop() || document.createElement(type), config);
const newPath = `.${i}${path}`;
element.dataset.path = newPath;
assemble(element, `.children${newPath}`, children);
fragment.appendChild(element);
});
target.appendChild(fragment);
}
function render(target, data) {
window.requestAnimationFrame(() => {
disassemble(target);
assemble(target, '', data);
});
}
const table = document.getElementById('dataTable');
table.addEventListener('input', ({target: {dataset, textContent, parentElement}}) => {
// use this to update local data
get(MOCKUP, dataset.path).textContent = textContent;
// easy access to row id (dataset values can only be strings)
parentElement.dataset.id
// raw dataset with all types and deep objects intact
get(MOCKUP, parentElement.dataset.path).dataset.id
});
render(table, MOCKUP);
不如React快,但是相当快。
答案 1 :(得分:0)
我对Angular并不十分熟悉,但是这段代码对我来说似乎很奇怪
<table #dataTable >
</table>
也许你是说
<table id="dataTable">
</table>