构造函数

当附加到 Rust "构造函数" 时,它将使生成的 JavaScript 绑定可作为 new Foo() 调用。

例如,考虑这个导出的 Rust 类型和 constructor 注释


# #![allow(unused_variables)]
#fn main() {
#[wasm_bindgen]
pub struct Foo {
    contents: u32,
}

#[wasm_bindgen]
impl Foo {
    #[wasm_bindgen(constructor)]
    pub fn new() -> Foo {
        Foo { contents: 0 }
    }

    pub fn get_contents(&self) -> u32 {
        self.contents
    }
}
#}

这可以在 JavaScript 中使用,如下所示

import { Foo } from './my_module';

const f = new Foo();
console.log(f.get_contents());

注意事项

从 v0.2.48 开始,wasm-bindgen 中存在一个错误,它会破坏从 JavaScript 端继承导出的 Rust 结构体(参见 #3213)。如果你想从 Rust 结构体继承,例如


# #![allow(unused_variables)]
#fn main() {
use wasm_bindgen::prelude::*;

#[wasm_bindgen]
pub struct Parent {
    msg: String,
}

#[wasm_bindgen]
impl Parent {
    #[wasm_bindgen(constructor)]
    fn new() -> Self {
        Parent {
            msg: String::from("Hello from Parent!"),
        }
    }
}
#}

你需要在通过 super 调用 Parent 的构造函数后,将 this 的原型重置回 Child 类的原型。

import { Parent } from './my_module';

class Child extends Parent {
    constructor() {
        super();
        Object.setPrototypeOf(this, Child.prototype);
    }
}

从 v0.2.88 开始,这不再需要。