-1

我正在尝试使用 near_sdk MapVector使用一对多关系。

use near_sdk::collections::Map;
use near_sdk::collections::Vector;

#[near_bindgen]
#[derive(Default, BorshDeserialize, BorshSerialize)]
pub struct ProfileDetails {
    profileTags: Map<String, IdProducts>,
}

#[near_bindgen]
#[derive(Default, BorshDeserialize, BorshSerialize)]
pub struct Products { 
    product_name: String,
    product_details: String,
} 

#[near_bindgen]
#[derive(Default, BorshDeserialize, BorshSerialize)]
pub struct IdProducts {
      products: Vector<Products>,
}

对于 rust 本机集合,它是使用 push 方法完成的,例如

 let mut hash_map: HashMap<u32, Vec<Sender>> = HashMap::new()
 hash_map.entry(3)
      .or_insert_with(Vec::new)
      .push(sender)

如何使用近协议集合推送?

#[near_bindgen]
impl ProfileDetails {
    pub fn set_profile(&mut self, product_name:String, product_details:String) {
        let account_id = env::signer_account_id();
        p = Products {
            product_name,
            product_details
        };
        self.profileTags.insert(&account_id, ???);

    }
}

Solidity 示例在这里:https ://ethereum.stackexchange.com/a/39705/56408

4

1 回答 1

1

首先,您只能在一个代表合同本身的结构上使用#[near_bindgen]。要实现set_profile,您可以创建一个带有适当前缀的持久向量(account_id例如)。所以它看起来像

let account_id = env::signer_account_id();
p = Products {
    product_name,
    product_details
};
let mut id_products = Vector::new(account_id.into_bytes());
id_products.push(&p);
self.profileTags.insert(&account_id, &id_products);

如果您的集合很小,您也可以Vec从标准库中使用。

于 2020-06-07T07:15:31.133 回答