1,新建.netframework winform工程
2,打开nuget程序包管理界面,安装Microsoft.ClearScript.V8,Microsoft.ClearScript.V8.Native.win-x64.
3,编写Javascript脚本,另存为demo.js
function testFunc(t) {return t + ",ClearScript演示用脚本"; }
4,主要代码
using Microsoft.ClearScript.V8;
using Microsoft.Win32;
//运行js里的方法
private void button1_Click(object sender, EventArgs e)
{
string testScript = System.IO.File.ReadAllText("C:\\Users\\Administrator\\Desktop\\demo.js", System.Text.Encoding.UTF8);
var engine = new V8ScriptEngine();
engine.Execute(testScript);
//直接C#函数调用
var rValue = engine.Script.testFunc("hello");
MessageBox.Show(rValue); //hello,ClearScript演示用脚本
//或者使用脚本调用
var rValue2 = engine.Invoke("testFunc", "hello");
MessageBox.Show((string?)rValue2); //hello,ClearScript演示用脚本
}
5,更多例子见 https://microsoft.github.io/ClearScript/Examples/Examples.html