我尝试使用动态 HTML 制作它,但我无法在动态 HTML 中调用点击事件。
这是我自己尝试的
my .ts file
htmlgrid:any;
jsonData:any;
ngOnInit(){
this.htmlgrid= this.parse(this.jsonData)
}
createRow (r) {
return '<div style="background-color : ' + r.color + '" class="row">' +
(r.text ? r.text : '') + this.parse(r) + '</div>';
}
createColumn (c) {
return '<div style="background - color: red;" class="col-md-' + 6 + ' test">' +
(c.text ? c.text : '') + this.parse(c) + '<img click="hell();" src = "../../../../assets/img/collection.jpg" style = "height: 100px; width:auto;" />' + '</div>';
}
parse (s) {
let S = '';
if (s.rows) {
for (let i in s.rows) {
console.log(s.rows[ i ], 'i of data');
S += this.createRow(s.rows[ i ]);
}
}
if (s.columns) {
for (let i in s.columns) {
S += this.createColumn(s.columns[ i ]);
}
}
console.log(S, 'value of s');
return S;
}
我的.html 文件
<div class="one" [innerHtml]="htmlToAdd"></div>
这种类型的 JSON 用于制作行和列,我们的 JSON 中也有标识符和行列检查。请帮助我卡在这里太糟糕了,我需要在下面的json的基础上制作行和列的网格
this.jsonData={
"rows":[
{
"columns":[
{
"identifier":"c1",
"hasRows":false,
"cashBack":{
"text":""
},
"title":{
"text":""
},
"images":{
"leafBanner":{
"url":"",
"bannerName":"",
"bannerType":"",
"bannerTarget":""
},
"listPageBanner":{
"image":"",
"2X":{
"height":"200px",
"width":"400px"
},
"3X":{
"height":"300px",
"width":"600px"
}
}
},
"height":"50",
"width":"50"
},
{
"identifier":"c2",
"hasRows":false,
"cashBack":{
"text":""
},
"title":{
"text":""
},
"images":{
"leafBanner":{
"url":"",
"bannerName":"",
"bannerType":"",
"bannerTarget":""
},
"listPageBanner":{
"image":"",
"2X":{
"height":"200px",
"width":"400px"
},
"3X":{
"height":"300px",
"width":"600px"
}
}
},
"height":"50",
"width":"50"
}
]
},
{
"columns":[
{
"identifier":"c3",
"hasRows":false,
"cashBack":{
"text":""
},
"title":{
"text":""
},
"images":{
"leafBanner":{
"url":"",
"bannerName":"",
"bannerType":"",
"bannerTarget":""
},
"listPageBanner":{
"image":"",
"2X":{
"height":"200px",
"width":"400px"
},
"3X":{
"height":"300px",
"width":"600px"
}
}
},
"height":"33",
"width":"33"
},
{
"identifier":"c4",
"hasRows":false,
"cashBack":{
"text":""
},
"title":{
"text":""
},
"images":{
"leafBanner":{
"url":"",
"bannerName":"",
"bannerType":"",
"bannerTarget":""
},
"listPageBanner":{
"image":"",
"2X":{
"height":"200px",
"width":"400px"
},
"3X":{
"height":"300px",
"width":"600px"
}
}
},
"height":"33",
"width":"33"
},
{
"identifier":"c5",
"hasRows":false,
"cashBack":{
"text":""
},
"title":{
"text":""
},
"images":{
"leafBanner":{
"url":"",
"bannerName":"",
"bannerType":"",
"bannerTarget":""
},
"listPageBanner":{
"image":"",
"2X":{
"height":"200px",
"width":"400px"
},
"3X":{
"height":"300px",
"width":"600px"
}
}
},
"height":"33",
"width":"33"
}
]
}
]
}