我正在开发一个功能,在这个功能中,从数据库中检索的用户定义的,匿名的,javascript函数需要在ASP.Net应用程序的上下文中执行服务器端。
我正在为此目的评估Jint(来自NuGet的最新版本)。我已经能够运行执行基本操作的函数并返回值,而不会出现如下问题。
public void Do()
{
var jint = new Engine();
var add = jint.Execute(@"var f = " + GetJsFunction()).GetValue("f");
var value = add.Invoke(5, 4);
Console.Write("Result: " + value);
}
private string GetJsFunction()
{
return "function (x,y) {" +
" return x+y;" +
"}";
}
我的问题是Jint是否有助于执行使用lodash等第三方库的javascript函数?如果是这样,我将如何让Jint引擎知道它(即第三方库)?
一个例子是执行以下功能。
private string GetFunction()
{
return "function (valueJson) { " +
" var value = JSON.parse(valueJson);" +
" var poi = _.find(value,{'Name' : 'Mike'});" +
" return poi; " +
"}";
}
提前多多感谢。
答案 0 :(得分:0)
我想我已经弄明白了。它与执行自定义功能没有什么不同。您只需从文件(项目资源)中读取第三方库并在Jint引擎上调用execute。见下文;
private void ImportLibrary(Engine jint, string file)
{
const string prefix = "JintApp.Lib."; //Project location where libraries like lodash are located
var assembly = Assembly.GetExecutingAssembly();
var scriptPath = prefix + file; //file is the name of the library file
using (var stream = assembly.GetManifestResourceStream(scriptPath))
{
if (stream != null)
{
using (var sr = new StreamReader(stream))
{
var source = sr.ReadToEnd();
jint.Execute(source);
}
}
}
}
我们可以为需要添加的所有第三方库调用此函数。