0

作为保留关键字的字段名称如何能够“转义”以在类型中使用?

type User = {
    type: Text; // `type` cant be used since its reserved
};

我希望能够返回字段名称为type.

是否有字符前缀或其他东西,以便在请求中序列化时输出“类型”?

该字段或某种序列化修饰以指定“类型”

4

1 回答 1

0

文档If the field name is a reserved name in Motoko, an undescore is appended. So record { if : bool } corresponds to { if_ : Bool }.

于 2022-02-26T15:52:24.350 回答