为什么Mac的Excel 2016中的表单不开机自检? [英] Why doesn’t the form not POST in Excel 2016 for Mac?

查看:78
本文介绍了为什么Mac的Excel 2016中的表单不开机自检?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们正在测试Excel加载项,该加载项的格式已发布到 https://httpbin.org/任何东西.对于Mac(High Sierra ver 10.13.1),该表单将不会在Excel 2016版本15.39(171010)中发布.以下是HTML表单的基本要求:

We are testing an add-in for Excel that has a form that is POSTed to https://httpbin.org/anything. The form will not POST in Excel 2016 version 15.39 (171010) for Mac (High Sierra ver 10.13.1). Here are the HTML form’s essentials:

<script type="text/javascript">

  //submit form
  $("#testForm").submit();

</script>

</head>
<body>

  <form method="POST" id="testForm" action="https://httpbin.org/anything" accept-charset="UTF-8" target="_blank">

    <div>
      <input type='hidden' name='mergeDataFormat' value='csv'>
    </div>
    <div>
      <input type="hidden" name="mergeData" id="mergeData" value='Name,Street,"City, State",ZIP Code'>
    </div>

    <input type="submit" value="Send" id="submitForm" />

  </form>

AppDomain是在清单中设置的:

AppDomain was set in the Manifest:

<AppDomains>
   <AppDomain>https://httpbin.org/</AppDomain>
   ...
</AppDomains>

这是我们在Charles HTTP Monitor 4.2版中看到的:

This is what we see in Charles HTTP monitor ver 4.2:

GET /anything HTTP/1.1
Host httpbin.org
Connection keep-alive
User-Agent Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36
Upgrade-Insecure-Reque
sts 1
Accept text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Accept-Encoding gzip, deflate, br
Accept-Language en-US,en;q=0.9
Cookie _gauges_unique_day=1; _gauges_unique_month=1; _gauges_unique_year=1; _gauges_unique=1
HTTP/1.1 200 OK
Server: meinheld/0.6.1
Date: Wed, 15 Nov 2017 18:07:11 GMT
Content-Type: application/json
Access-Control-Allow-Origin: *
Access-Control-Allow-Credentials: true
X-Powered-By: Flask
X-Processed-Time: 0.00142621994019
Content-Length: 726
Via: 1.1 vegur
Connection: Keep-alive
{
"args": {},
"data": "",
"files": {},
"form": {},
"headers": {
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Connection": "close",
"Cookie": "_gauges_unique_day=1; _gauges_unique_month=1; _gauges_unique_year=1; _gauges_unique=1",
"Host": "httpbin.org",
"Upgrade-Insecure-Requests": "1",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36"
},
"json": null,
"method": "GET",
"origin": "<ip-address-here>",
"url": "https://httpbin.org/anything"
}

按下发送"按钮后,会弹出httpbin.org页面以显示以下内容:

After pressing the Send button, the httpbin.org page pops up to show this:

{
"args": {},
"data": "",
"files": {},
"form": {},
"headers": {
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"Accept-Encoding": "gzip, deflate, br",
"Accept-Language": "en-US,en;q=0.9",
"Connection": "close",
"Cookie": "_gauges_unique_day=1; _gauges_unique_month=1; _gauges_unique_year=1; _gauges_unique=1",
"Host": "httpbin.org",
"Upgrade-Insecure-Requests": "1",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36"
},
"json": null,
"method": "GET",
"origin": "<ip-address-here>",
"url": "https://httpbin.org/anything"
}

似乎没有POST到URL.在Excel中没有看到错误.可以在Mac上的浏览器中将表单成功发布到相同的URL.仅在Mac版Excel 2016中会看到此问题.相同的代码在Windows 2016的Excel 2016(7和10)和在线Excel中可以正常工作.任何能帮助解决此问题的见解都将受到赞赏.

It seems like there was no POST to the URL. No errors seen in Excel. The form can be POSTed successfully to the same URL in a browser on the Mac. This issue is seen only in Excel 2016 for Mac. The same code works fine in Excel 2016 for Windows (7 and 10) and Excel online. Any insights to help resolve this is much appreciated.

请参阅相关问题推荐答案

将Mac上的Excel 2016更新到版本16.9.0(18011602).我们能够从Mac版Excel 2016进行发布!感谢整个MS团队.

Update Excel 2016 on Mac to version 16.9.0 (18011602). We are able to POST from Excel 2016 for Mac! Thanks to the entire MS team.

这篇关于为什么Mac的Excel 2016中的表单不开机自检?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆