Shared function has non-shared return type
返回Item
该get
方法时出现错误。
一个人将如何制作 Itemshared
或者是否有更好的方法来返回属性/对象
public type Item = {
id: Nat;
var name: Text;
};
actor Maas {
var items: [Item] = [];
...
public shared query func get(id: Nat) : async Item {
return businesses[id - 1];
};
};