本文整理汇总了TypeScript中entcore-toolkit.Mix.castAs方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Mix.castAs方法的具体用法?TypeScript Mix.castAs怎么用?TypeScript Mix.castAs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类entcore-toolkit.Mix
的用法示例。
在下文中一共展示了Mix.castAs方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: fromJSON
fromJSON(data) {
if (data.media.type === 'grid') {
let source = Mix.castAs(Page, data.media.source);
this.media.source = source;
this.media.showEmbedder = false;
}
}
示例2: duplicate
duplicate() {
let data = JSON.parse(JSON.stringify(this));
let duplicate: Page = Mix.castAs(Page, data);
duplicate.website = this.website;
duplicate.title = this.title + ' (Copie)';
duplicate.setTitleLink();
this.website.pages.push(duplicate);
}
示例3: Row
scope.duplicate = () => {
let newRow = new Row(scope.row.page);
let newCell: Cell = Mix.castAs(Cell, JSON.parse(JSON.stringify(scope.cell)));
newCell.flash = true;
newCell.width = 12;
newRow.addCell(newCell);
let currentRow = scope.row as Row;
currentRow.page.rows.insertAfter(newRow, currentRow);
};