以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 关于手机端上传图片的问题 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=139246) |
-- 作者:有点蓝 -- 发布时间:2019/8/9 9:17:00 -- 使用日志跟踪一下,后台e.values,e.plantext,e.Files.Keys,For Each fl As String In e.Files(key)分别接收到什么内容? 问问前端开发,如果使用其它开发工具,是怎么接收的 |
-- 作者:有点蓝 -- 发布时间:2019/8/9 10:11:00 -- 参考:https://wechat.foxtable.com:9009/Webhelp/scr/we0008.htm |
-- 作者:有点蓝 -- 发布时间:2019/8/9 11:17:00 -- \'\'记录接收的消息,方便分析,用于调试 Dim str As new StringBuilder str.AppendLine("Headers:---------------") For Each key As String In e.Request.Headers.AllKeys str.AppendLine(key & " = " & e.Request.Headers(key)) Next str.AppendLine("Headers:---------------") str.AppendLine("host=" & e.Host) str.AppendLine("port=" & e.Port) str.AppendLine("path=" & e.Path) str.AppendLine("HttpMethod=" & e.Request.HttpMethod) str.AppendLine("poststring=" & e.PlainText) \'str.AppendLine("ip=" & e.Request.RemoteEndPoint().Address.ToString()) str.AppendLine("getValues:---------------") For Each key As String In e.getValues.Keys str.AppendLine(key & "=" & e.getValues(key)) Next str.AppendLine("postValues:---------------") For Each key As String In e.PostValues.Keys str.AppendLine(key & "=" & e.PostValues(key)) Next \'----------file For Each key As String In e.Files.Keys str.AppendLine(key & " 上传" & e.Files(key).Count & "个文件,分别是:") For Each fl As String In e.Files(key) str.AppendLine(fl) Next Next \'----------file Functions.Execute("LogText",str.ToString)
|
-- 作者:有点蓝 -- 发布时间:2019/8/9 15:42:00 -- 试试使用其它开发工具(asp.net、php、java.....)做后端,能不能接收 |
-- 作者:有点蓝 -- 发布时间:2019/8/9 16:50:00 -- 其它开发工具怎么接收的,代码发过来看看 |
-- 作者:有点蓝 -- 发布时间:2019/8/10 11:33:00 -- 其它开发工具怎么接收的,代码发过来看看。做个实例发过来测试一下 |
-- 作者:有点蓝 -- 发布时间:2019/11/8 9:58:00 -- 上传可以测试的例子,否则我也无法定位问题 |