我知道我可以使用Invocable类来调用类上的方法:
import javax.script.{ScriptEngine, ScriptEngineManager, Invocable}
val engine = new ScriptEngineManager().getEngineByExtension("js")
val invoker = engine.asInstanceOf[Invocable]
val person = engine.eval(s"""
new function () {
this.name = "Rick";
this.age = 28;
this.speak = function () {
return this.name + "-" + this.age;
}
};
""")
invoker.invokeMethod(person, "speak") //returns "Rick-28"
但是,我如何获得name
人的属性?我试过 invoker.invokeMethod(person, "name")
了,我得到了一个NoSuchMethodError
.