奥托 -- import "github.com/robertkrimen/otto" Package otto是一个用Go原生编写JavaScript解析器和解释器。 import ( "github.com/robertkrimen/otto" ) 在VM中运行内容 vm := otto . New () vm . Run ( ` abc = 2 + 2; console.log("The value of abc is " + abc); // 4 ` ) 从虚拟机中获取价值 if value , err := vm . Get ( "abc" ); err == nil { if value_int , err := value . ToInteger (); err == nil { fmt . Printf ( "" , value_i