- 打字稿
- ABP + .NET 核心
我正在使用网格来插入行(我正在使用的网格是 DevExtreme 框架的一个组件)。无论如何,与其他网格类似,它在插入记录时引发onRowInserting
事件,将插入的行作为参数提供。在这种情况下,我需要将该“匿名”对象(插入的数据)转换为我的客户端 DTO。
onRowInserting(e) {
let mynewrow: ItemDto = e.data; // e.data contains the inserted row
}
为了更好地理解我需要实现的目标,请阅读这篇文章:
将行添加到 DevExtreme 网格(角度) - 模型/模式
编辑
ItemDto
: _
export class ItemDto implements IItemDto {
description: string;
note: string;
quantita: number;
postId: number;
id: number;
constructor(data?: IItemDto) {
if (data) {
for (var property in data) {
if (data.hasOwnProperty(property))
(<any>this)[property] = (<any>data)[property];
}
}
}
init(data?: any) {
if (data) {
this.description = data["description"];
this.note = data["note"];
this.quantita = data["quantita"];
this.postId = data["postId"];
this.id = data["id"];
}
}
static fromJS(data: any): ItemDto {
let result = new ItemDto();
result.init(data);
return result;
}
toJSON(data?: any) {
data = typeof data === 'object' ? data : {};
data["description"] = this.description;
data["note"] = this.note;
data["quantita"] = this.quantita;
data["postId"] = this.postId;
data["id"] = this.id;
return data;
}
clone() {
const json = this.toJSON();
let result = new ItemDto();
result.init(json);
return result;
}
}
export interface IItemDto {
description: string;
note: string;
quantita: number;
postId: number;
id: number;
}
下面是e.data
(此时,我只在网格中添加了一些列,因此并非所有字段都存在)的内容。
Object {
__KEY__: "7c2ab8-1ff6-6b53-b9d7-ba25c27"
description: "mydescription"
id: 32
note: "mynote"
postId: 4
quantita: 2
> __proto__: Object { constructor; , _defineG....
}
此图像更好地代表对象:https ://imgur.com/ihVZrDh
我不确定我在这条线上做了什么let mynewrow: ItemDto
。我不知道它是否正确,或者是否足以稍后使用该变量,将其传递给保存新行的服务。