我正在尝试在JsValue
数组上创建块方法。有什么方法可以将修改后的数组传回JavaScript?
这就是我想要做的:
#[wasm_bindgen]
pub fn chunk(array: Box<[JsValue]>, size: usize) -> Box<[Box<[JsValue]>]> {
array
.chunks(size)
.map(|el| {
el.iter()
.map(|el| el.to_owned())
.collect::<Box<[JsValue]>>()
})
.collect()
}
我在编译过程中得到了这个
the trait `wasm_bindgen::convert::traits::IntoWasmAbi` is not
implemented for
`std::boxed::Box<[std::boxed::Box<[wasm_bindgen::JsValue]>]>`
我也尝试了js_sys,但由于它只是一个JS API包装器,因此它花费的时间甚至比纯JS实现还要长
#[wasm_bindgen]
pub fn chunk(array: Box<[JsValue]>, size: usize) -> Array {
let root = Array::new();
for chunk in array.chunks(size) {
let arr = Array::new();
for ch in chunk {
arr.push(ch);
}
root.push(&arr);
}
root
}