如何使用 ClearScript 将 JavaScript 数组传递给主机?



我正在尝试将JavaScript数组传递给主机函数,但找不到有关如何使用ClearScript执行此操作的文档。我本以为它会这么简单,但事实并非如此。

public class myHostType
{
public static void print(string format, object[] args)
{
//TODO: implement print
}
}
...
engine.addHostType("console", typeof(myHostType));
engine.Execute("console.print('Hello', ['World', 42])");

有了这段代码,我得到了Error: The best overloaded method match for V8SScript1.myHostType.print(string, object[])' has some invalid arguments.'

这是我能找到的最接近解决方案的东西。难道没有更好的方法吗?

public class myHostType
{
public static void print(string format, dynamic args)
{
var realArgs = new Object[args.length];
for (int i = 0; i < realArgs.Length; ++i)
{
realArgs[i] = args[i];
}
//TODO: implement print
}
}

ClearScript 不会自动转换数组,所以你必须自己做,就像你一样。

您也可以在脚本端进行转换:

engine.AddHostObject("host", new HostFunctions());
engine.Execute(@"
Array.prototype.toClrArray = function () {
var clrArray = host.newArr(this.length);
for (var i = 0; i < this.length; ++i) {
clrArray[i] = this[i];
}
return clrArray;
};
");
...
engine.Execute("console.print('Hello {0} {1}', ['World', 42].toClrArray());");

但是,在这种情况下,使用params可能是有意义的:

public class myHostType {
public static void print(string format, params object[] args) {
Console.WriteLine(format, args);
}
}
...
engine.Execute("console.print('Hello {0} {1}', 'World', 42);");

相关内容

  • 没有找到相关文章

最新更新