I'm trying to call a C# method from JavaScript by using ActiveXObject
:
var myobj = new ActiveXObject('myobject');
var arr = myobj.GetArray();
Eventually, arr
will contain a SAFEARRAY
object, but not JScript
array. Is there any way to return native JavaScript object from a C# method?
You can return a JSON string and then parse into a JavaScript object. There are a number of .NET libraries available to serialize .NET objects into JSON and vice-versa-
to name a few.
This question and answer may be of use to you
I found the solution by myself, but no documentation exists for this part.
The solution is to use JScript.ArrayObject
in the following way:
ArrayObject _lastField;
byte[] byteArray = new byte[]{2,1,2,3};
object[] array = new object[byteArray.Length];
byteArray.CopyTo(array, 0);
_lastField = Microsoft.JScript.GlobalObject.Array.ConstructArray(array);
After that you will be able to use the _lastField
array in JavaScript like a native array:
var myobj = new ActiveXObject('myobject');
var arr = myobj.LastField;
alert(arr[1]);
You may return delimited Joined String in C# and can split into JavaScript
//C#
public string getArryString()
{
string[] arrstring = new string[]{"1","2","3"};
return string.Join(",", arrstring);
}
//Javascript
var arrstring = objActiveX.getArryString().split(',');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With