Tauri Rust 控制台
查找错误的第一个地方是Rust Console。 这是在您运行中的终端,例如 tauridev。 您可以使用以下代码从 Rust 文件中将某些内容打印到该控制台
println!("Message from Rust: {}", msg);
有时你的 Rust 代码中可能会有错误,而 Rust 编译器可以给你很多信息。 例如,如果 tauri dev 崩溃,您可以在 Linux 和 macOS 上像这样重新运行它:
RUST_BACKTRACE=1 tauri dev
或者在Windows上可以这样:
set RUST_BACKTRACE=1
tauri dev
此命令为您提供精细的堆栈跟踪。 一般来说,Rust 编译器通过为您提供有关问题的详细信息来帮助您,例如:
error[E0425]: cannot find value `sun` in this scope
--> src/main.rs:11:5
|
11 | sun += i.to_string().parse::<u64>().unwrap();
| ^^^ help: a local variable with a similar name exists: `sum`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0425`.