0

我正在尝试在基板中使用 struct

#[derive(PartialEq, Eq, PartialOrd, Ord, Default, Clone, Encode, Decode, RuntimeDebug)]
pub struct DepartmentDetails {
    pub name: Vec<u8>,
    pub location: Vec<u8>,
    pub details: Vec<u8>,
    pub departmentid: u128,
}

在 decl_stroage

Department get(fn department_name): map hasher(blake2_128_concat) u128 => DepartmentDetails;

虽然节点成功运行且没有错误,但它给 polkadotjs 应用程序报错,说:
发现未知类型,没有部门详细信息的类型

https://substrate.dev/recipes/structs.html

4

1 回答 1

2

Polkadot-js 只能构造和显示它理解的类型。请参阅此处的常见问题解答。

对于开发,您可以在Settings > Developer选项卡中添加自定义类型描述。

对于生产,您可以通过扩展此处描述的类型,将类型描述添加到基于 polkadot-js 的 UI 。

于 2021-03-19T08:46:54.150 回答