12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
- <title></title>
- </head>
- <body>
- <button id="btn">转换</button>
- <script src="../../js/jquery.min.js"></script>
- <script type="text/javascript">
-
- $("#btn").click(function () {
- let postData = {
- convertType: 0,
- fileUrl: "http://10.233.22.204:8088/glwork/g2work/files2/inline/865e508cb0c706bd2e09e73f2168cb8a/431d39d5e28fec47bc346a3b8e2f35f7/e887aae5ae9ae8a1a8e58d95e5b7a5e4bd9ce9878fe9878de696b0e6a2b3e79086.doc"
- };
- $.ajax({
- url: "http://10.233.22.204:8088/fcscloud/composite/httpfile",
- //url: "http://10.4.23.31/api.do",
- data: postData,
- type: "POST",
- dataType: "json",
- contentType: "application/x-www-form-urlencoded",
- general: false,
- async: false,
- success: function (res) {
- console.log(res);
- if (res.errorcode === 0) {
- let rst = res.data;
- console.log(rst.viewUrl);
- window.open(rst.viewUrl, "_blank");
- } else {
- alert(res.message);
- }
- },
- });
- });
- </script>
- </body>
- </html>
|