当前位置: 代码迷 >> JavaScript >> 如何将对象从JavaScript传递到Windows运行时组件C#?
  详细解决方案

如何将对象从JavaScript传递到Windows运行时组件C#?

热度:52   发布时间:2023-06-05 09:40:10.0

我在JavaScript中确实具有以下对象参数 ,并且我想将其传递给Windows Apps的C#Windows运行时组件。

var param = {
        "url" : "http://192.168.101.224/DEMO/All/DemoService.svc/login",
        "requesttype" : "POST",
        "paramss" : {
            "userName" : "demouser",
            "password" : "abcdef",
            "domain" : "demodomain",
            "accessKey" : "12345"
        }
    }
.....
callWebservice: function (param, callBack) {
        try {
            service = new ServcieRuntimes.Service();
            service.callHttpService(param).then(function (data) { ... )};

在C#,WinRT Component类中,我这样做。

 public IAsyncOperation<string> CallHttpService(string param)
    {
        return CallHttpServiceHelper(json).AsAsyncOperation();
    }

 private async Task<string> CallHttpServiceHelper(string param)
    {
        try
        { ....... }

但是我越来越

[object Object]

在C#中。

请帮我。 提前致谢!

您的C#代码需要一个(大概是JSON)字符串,您需要提供一个

service.callHttpService(JSON.stringify(param)).then(function (data) { ... )};

您目前得到

[object Object]

因为那是{} .toString();的输出;

  相关解决方案