请问帆软里可以直接调用其他系统的webservice接口吗?(json)

有没有相关成功的案例可以参考。

FineReport 小县城 发布于 2020-12-4 16:13 (编辑于 2020-12-4 16:14)
1min目标场景问卷 立即参与
回答问题
悬赏:10 F币 4人赏过 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
0
小县城Lv4见习互助
发布于2021-1-25 13:33

var url="www.baidu.com ";  接口URL地址

        var t ="具体内容";

        console.info(t);

        s=JSON.parse(t);

        var msg="";

             var xhr1 = new XMLHttpRequest();

        var xhr = new XMLHttpRequest();

            xhr.open('POST', url, true);

            xhr.send();

            xhr.onreadystatechange = function () {

                if (xhr.readyState == 4 && xhr.status == 200) {

                    //callback(xhr.responseText);

                   

                    xhr1.open('POST', url, true);

                    xhr1.send(t);

 

                }

            };

 

        xhr1.onreadystatechange = function () {

            console.info(xhr1.readyState);

            console.info(xhr1.status);

 

            if (xhr1.readyState == 4 && xhr1.status == 200) {

                msg=JSON.parse(xhr1.responseText);

                alert(msg.payload.std_data.execution.description);

            }

        };


最佳回答
0
luojian0323Lv7资深互助
发布于2020-12-4 16:16(编辑于 2020-12-4 16:30)

据我所知是可以的。但是你这问题问的太笼统了。

发几个参考资料给你,研究下:

https://help.fanruan.com/finereport/doc-view-1985.html?source=4#

  • 小县城 小县城(提问者) 帮助文档里的内容和我下载下来的不大一样。估计是版本差异。测试失败了。
    2020-12-07 08:20 
  • 1关注人数
  • 878浏览人数
  • 最后回答于:2021-1-25 13:33
    请选择关闭问题的原因
    确定 取消
    返回顶部