我正在开发一项功能,其中需要在ASP.Net应用程序的上下文中的服务器端执行从数据库检索的用户定义的匿名javascript函数。
为此,我正在评估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; " +
"}";
}
非常感谢。
最佳答案
我想我已经知道了。这与执行自定义函数没有什么不同。您只需从文件(项目资源)中读取第三方库,然后在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);
}
}
}
}
我们可以为所有需要添加的第三方库调用此函数。
关于javascript - 在Jint中使用第三方js库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38431553/