原文:http://www.cnblogs.com/TianFang/archive/2012/03/04/2379246.html
以前我一直使用Jint来实现在.net中解析javascript,Jint非常好用,但不是很完善,时常遇到一些不支持的属性和bug,一旦踩雷后排查和规避起来往往比较麻烦。今天发现了一个更完善的Javascript库——Javascript .NET。试用了一下,貌似比Jint更为完善一些,使用的方式和Jint差不多,以后就用它了。
// Initialize a context
JavascriptContext context = new JavascriptContext();
// Setting external parameters for the context
context.SetParameter("console", new SystemConsole());
context.SetParameter("message", "Hello World !");
context.SetParameter("number", 1);
// Script
string script = @"
var i;
for (i = 0; i < 5; i++)
console.Print(message + ' (' + i + ')');
number += i;
";
// Running the script
context.Run(script);
// Getting a parameter
Console.WriteLine("number: " + context.GetParameter("number"));
可以在
这里
下载编译好了的DLL文件。