如何使用 Clearscript 将 CLR 类型的本机 JS 数组转换为 CLR 数组
How to convert native JS array of CLR types to CLR array with Clearscript
我正在考虑将我们的应用程序从使用 JavaScript.NET (Noesis) 转换为使用 ClearScript。
我们的应用程序包含大量用户创建的 Javascript algorithms/expressions 用于财务计算 - 我宁愿尽可能避免更改这些内容 .
目前 JavaScript.NET 许多用户定义的算法都遵循一种模式,即创建一个包含主机类型的 JavaScript 数组并将其作为参数传递给另一个主机类型上的函数。用JavaScript.NET表示转换"just works"。请参阅下面的代码了解我正在尝试做的事情:
using System;
using Microsoft.ClearScript;
using Microsoft.ClearScript.V8;
namespace ClearscriptPlayground
{
class Program
{
static void Main(string[] args)
{
using (var engine = new V8ScriptEngine())
{
var myClass = new MyClass();;
engine.AddHostObject("instance", myClass);
engine.AddHostType("MyType", HostItemFlags.DirectAccess, typeof(MyType));
engine.Execute(
@"var params = [new MyType('bye', 10),
new MyType('hello', 10)];
instance.SomethingElse(params)");
Console.ReadLine();
}
}
}
public class MyClass
{
// public void SomethingElse(ITypedArray<MyType> foo)
// {
// // Doesn't work.
// }
// public void SomethingElse(MyType[] foo)
// {
// // Doesn't work.
// }
// public void SomethingElse(dynamic foo)
// {
// var mapped = foo as ITypedArray<MyType>; // Doesn't work
// var mapped = foo as MyType[]; // Doesn't work either
// }
public void SomethingElse(ScriptObject foo)
{
// Works, but how best to convert to MyType[] or similar?
}
}
public struct MyType
{
public string Foo;
public int Bar;
public MyType(string foo, int bar)
{
Foo = foo;
Bar = bar;
}
}
}
NB:我知道我可以使用 params = host.newArr(MyType, 2);
创建一个主机数组,这会起作用——但这意味着修改所有用户维护的 JavaScript 我真的宁愿避免。
您可以通过 dynamic
:
直接使用 JavaScript 数组
public void SomethingElse(dynamic foo)
{
var length = foo.length;
for (var i = 0; i < length; ++i)
{
var my = (MyType)foo[i];
Console.WriteLine("{0} {1}", my.Foo, my.Bar);
}
}
我正在考虑将我们的应用程序从使用 JavaScript.NET (Noesis) 转换为使用 ClearScript。
我们的应用程序包含大量用户创建的 Javascript algorithms/expressions 用于财务计算 - 我宁愿尽可能避免更改这些内容 .
目前 JavaScript.NET 许多用户定义的算法都遵循一种模式,即创建一个包含主机类型的 JavaScript 数组并将其作为参数传递给另一个主机类型上的函数。用JavaScript.NET表示转换"just works"。请参阅下面的代码了解我正在尝试做的事情:
using System;
using Microsoft.ClearScript;
using Microsoft.ClearScript.V8;
namespace ClearscriptPlayground
{
class Program
{
static void Main(string[] args)
{
using (var engine = new V8ScriptEngine())
{
var myClass = new MyClass();;
engine.AddHostObject("instance", myClass);
engine.AddHostType("MyType", HostItemFlags.DirectAccess, typeof(MyType));
engine.Execute(
@"var params = [new MyType('bye', 10),
new MyType('hello', 10)];
instance.SomethingElse(params)");
Console.ReadLine();
}
}
}
public class MyClass
{
// public void SomethingElse(ITypedArray<MyType> foo)
// {
// // Doesn't work.
// }
// public void SomethingElse(MyType[] foo)
// {
// // Doesn't work.
// }
// public void SomethingElse(dynamic foo)
// {
// var mapped = foo as ITypedArray<MyType>; // Doesn't work
// var mapped = foo as MyType[]; // Doesn't work either
// }
public void SomethingElse(ScriptObject foo)
{
// Works, but how best to convert to MyType[] or similar?
}
}
public struct MyType
{
public string Foo;
public int Bar;
public MyType(string foo, int bar)
{
Foo = foo;
Bar = bar;
}
}
}
NB:我知道我可以使用 params = host.newArr(MyType, 2);
创建一个主机数组,这会起作用——但这意味着修改所有用户维护的 JavaScript 我真的宁愿避免。
您可以通过 dynamic
:
public void SomethingElse(dynamic foo)
{
var length = foo.length;
for (var i = 0; i < length; ++i)
{
var my = (MyType)foo[i];
Console.WriteLine("{0} {1}", my.Foo, my.Bar);
}
}