1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#![allow(unused_imports)]
use handlebars::Handlebars;
use std::error::Error;
#[macro_use]
extern crate serde_json;
fn main() -> Result<(), Box<dyn Error>> {
let mut handlebars = Handlebars::new();
handlebars.register_template_file("tpl", "./examples/script/template.hbs")?;
handlebars.register_script_helper_file("score", "./examples/script/goals.rhai")?;
let data = json! {[
[{
"name": "Dortmund",
"goals": ["Haaland", "Guerreiro", "Hazard", "Guerreiro"]
}, {
"name": "Schalke",
"goals": []
}],
[{
"name": "RB Leipzig",
"goals": ["Poulsen"]
}, {
"name": "SC Feriburg",
"goals": ["Gulde"]
}]
]};
println!("{}", handlebars.render("tpl", &data)?);
Ok(())
}
|