Receiving complex javascript values through external interface
问题 I'm trying to receive and potentially send complex values through TWebBrowser (using TEmbeddedWB) with the provided external object. For example; in javascript I would try to use the exposed method with an array as a parameter: var test = [123, 'abc']; external.someFunction(test); //Or something more complex var complexObject = { someMethod : function(){ return 1; }, someProperty : 123, someArray : ['xyz', 3.14] } external.someFunction(complexObject); Checking the VarType of both of these