我首先查看了 Api 注释并进行了比较: https ://developer.holochain.org/api/
到目前为止我做了什么:
准备:
下载并安装 0.0.2,然后更新 bash_profile 以下链接: https ://developer.holochain.org/start.html
JSON PARSE/Stringify 更新
更新了所有测试以删除不再需要的任何 JSON.parse 和 JSON.stringify 调用,例如替换它:
JSON.stringify({})
有了这个:
{}
导出函数更新
更新了 zome 定义文件 (lib.rs) 中的所有派生函数以包括 Debug 和 DefaultJSON,如下所示:
#[derive(Serialize, Deserialize, Debug, DefaultJson)]
Json 字符串更新
对 JsonString 上的所有 zome 文件进行了全局查找和替换,将 serde_json 调用更改为如下所示:
更换
-> serde_json::Value
和
-> JsonString
所以它看起来像这样:
fn handle_create_action(action: Action, user_address: HashString) ->
JsonString { ...
当前错误
我遇到了这些错误:
error: cannot find derive macro DefaultJson in this scope
error[E0412]: cannot find type JsonString in this scope
我们如何将这些导入到 lib.rs 文件中?
更新
这绝不是一个全面的答案,但这里是我在帮助下找到的一些额外步骤。
您还需要编辑每个 zome 的 cargo.toml 文件,即依赖项部分,如下所示:
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
hdk = { git = "https://github.com/holochain/holochain-rust", branch = "master" }
holochain_core_types = { git = "https://github.com/holochain/holochain-rust", branch = "master" }
holochain_core_types_derive = { git = "https://github.com/holochain/holochain-rust", branch = "master" }
holochain_wasm_utils = { git = "https://github.com/holochain/holochain-rust", branch = "master" }
这是通过规范应用程序找到的,该应用程序已经与昨晚发布的版本保持同步,在此页面: https ://github.com/holochain/dev-camp-tests-rust/blob/master/zomes/people /code/Cargo.toml
每个 zome 都需要它来替换#derive
函数上方的所有内容:
#![feature(try_from)]
#[macro_use]
extern crate hdk;
extern crate serde;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate serde_json;
extern crate holochain_core_types;
#[macro_use]
extern crate holochain_core_types_derive;
use hdk::{
holochain_core_types::{
dna::zome::entry_types::Sharing,
hash::HashString,
json::JsonString,
entry::Entry,
entry::entry_type::EntryType,
error::HolochainError,
cas::content::Address,
},
};
这解决了编译时的初始错误,并在我运行hc test
编译、构建和测试应用程序时通过终端反馈向我展示了下一层所需的更改......这就是我现在看到的......
错误 1
error[E0061]: this function takes 1 parameter but 2 parameters were supplied
--> src/lib.rs:56:11
|
56 | match hdk::commit_entry("metric", json!(metric)) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 1 parameter
错误 2
error[E0308]: mismatched types
--> src/lib.rs:60:24
|
60 | return json!({"link error": link_result.err().unwrap()});
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `holochain_core_types::json::JsonString`, found enum `serde_json::Value`
我将尝试通过用 JsonString 替换 zome 代码中的 serde_json 调用来解决这个问题...
错误 3
error[E0609]: no field `links` on type `hdk::holochain_wasm_utils::api_serialization::get_links::GetLinksResult`
--> src/lib.rs:82:18
|
82 | .links
| ^^^^^ unknown field
错误 4
error[E0599]: no method named `to_json` found for type `hdk::error::ZomeApiError` in the current scope
--> src/lib.rs:97:32
|
97 | "error": hdk_error.to_json()
| ^^^^^^^
更新 2
@connorturlands 的回答让我克服了大部分错误,现在似乎只有一个。
^^^^^^^^
|
= note: #[warn(unused_imports)] on by default
error[E0063]: missing fields `active`, `date_time`, `description` and 12 other fields in initializer of `Metric`
--> src/lib.rs:48:68
|
48 | let metric_entry = Entry::new(EntryType::App("metric".into()), Metric{
| ^^^^^^ missing `active`, `date_time`, `description` and 12 other fields
error: aborting due to previous error
For more information about this error, try `rustc --explain E0063`.
error: Could not compile `metrics`.
这是对这个 zome 定义的回应:
fn handle_create_metric(metric: Metric, user_address: HashString) -> JsonString {
let metric_entry = Entry::new(EntryType::App("metric".into()), Metric{
// => Here is where the error triggers... it wants me to define 'title, time, etc' but as a core function, I don't see the point, those will be inputted.. not sure how to address this
});
match hdk::commit_entry(&metric_entry) {
Ok(metric_address) => {
match hdk::link_entries(
&user_address,
&metric_address,
"metric_by_user"
) {
Ok(link_address) => metric_address.into(),
Err(e) => e.into(),
}
}
Err(hdk_error) => hdk_error.into(),
}
}