ChakraCore.NET JavaScript引擎:如何将C#对象(包括属性和变量)公开给javascript

时间:2019-04-02 19:39:04

标签: c# javascript-engine chakracore

我能够通过遵循https://github.com/JohnMasen/ChakraCore.NET中提供的示例来访问对象方法,但是找不到在对象中绑定变量的方法。有没有办法绑定属性和变量?而且,有没有比绑定每个方法更好的方法来显示整个对象?

context.ServiceNode.GetService<IJSValueConverterService>().RegisterProxyConverter<DebugEcho>( //register the object converter
        (binding, instance, serviceNode) =>
        {
           binding.SetMethod<string>("echo", instance.Echo); //js: [object].echo=function(s){[native code]}

    });

0 个答案:

没有答案