久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<tfoot id='mFk7Q'></tfoot>

    • <bdo id='mFk7Q'></bdo><ul id='mFk7Q'></ul>

  • <i id='mFk7Q'><tr id='mFk7Q'><dt id='mFk7Q'><q id='mFk7Q'><span id='mFk7Q'><b id='mFk7Q'><form id='mFk7Q'><ins id='mFk7Q'></ins><ul id='mFk7Q'></ul><sub id='mFk7Q'></sub></form><legend id='mFk7Q'></legend><bdo id='mFk7Q'><pre id='mFk7Q'><center id='mFk7Q'></center></pre></bdo></b><th id='mFk7Q'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='mFk7Q'><tfoot id='mFk7Q'></tfoot><dl id='mFk7Q'><fieldset id='mFk7Q'></fieldset></dl></div>

  • <small id='mFk7Q'></small><noframes id='mFk7Q'>

      <legend id='mFk7Q'><style id='mFk7Q'><dir id='mFk7Q'><q id='mFk7Q'></q></dir></style></legend>

      1. 在 VBA HTTP Post 請求中傳遞參數

        Pass Parameters in VBA HTTP Post Request(在 VBA HTTP Post 請求中傳遞參數)

            <small id='dKb3x'></small><noframes id='dKb3x'>

          1. <i id='dKb3x'><tr id='dKb3x'><dt id='dKb3x'><q id='dKb3x'><span id='dKb3x'><b id='dKb3x'><form id='dKb3x'><ins id='dKb3x'></ins><ul id='dKb3x'></ul><sub id='dKb3x'></sub></form><legend id='dKb3x'></legend><bdo id='dKb3x'><pre id='dKb3x'><center id='dKb3x'></center></pre></bdo></b><th id='dKb3x'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='dKb3x'><tfoot id='dKb3x'></tfoot><dl id='dKb3x'><fieldset id='dKb3x'></fieldset></dl></div>

                <tfoot id='dKb3x'></tfoot>
                  <tbody id='dKb3x'></tbody>
                <legend id='dKb3x'><style id='dKb3x'><dir id='dKb3x'><q id='dKb3x'></q></dir></style></legend>
                  <bdo id='dKb3x'></bdo><ul id='dKb3x'></ul>
                  本文介紹了在 VBA HTTP Post 請求中傳遞參數的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在嘗試在 http://forums.egullet.org 的主搜索欄上做一個簡單的發布請求/.(這是一個例子,但我正在嘗試構建一種適用于許多人的工具.)

                  I'm trying to do a simple post request on the main search bar of http://forums.egullet.org/. (This is one example, but I'm trying to build a tool that will work with many.)

                  問題是我似乎無法找出正確的方法來構造/放置參數以便服務器處理我的請求.(我確實收到了響應,但這只是一個頁面要求我再次嘗試搜索,而不是我在瀏覽器中進行搜索時得到的結果.參數字符串是直接從 firebug 中提取的,所以我很公平確定它是正確的.我只是覺得我沒有把它放在正確的位置/正確地構造它/說出我需要的一切,但我不知道要改變什么.值得注意的是,我以前有這通過編輯 Internet Explorer 對象的 DOM 來工作,但我正在嘗試切換到 XMLHTTP,因為它更快/更可靠.感謝您的幫助!

                  The problem is that I can't seem to figure out the right way to structure/place the parameters such that the server processes my request. (I do get a response, but it's just a page asking me to try the search again, rather than the result I get when I do the search in a browser. The argument string was pulled straight out of firebug, so I'm fairly sure that it's correct. I just get the impression that i'm not putting it in the right place/structuring it correctly/saying everything that I need to, but I don't know what to change. It's worth noting that I previously had this working by editing the DOM of an internet explorer object, but I'm trying to switch to XMLHTTP because it's much faster/more reliable. Thanks for your help!

                  Sub httpPost()
                  Dim XMLHTTP
                  Dim result As String
                  Dim argumentString
                  argumentString = "?search_term=eggs&search_app=forums"
                  Set XMLHTTP = CreateObject("MSXML2.XMLHTTP.6.0")
                  XMLHTTP.Open "POST", _
                      "http://forums.egullet.org/index.php?app=core&module=search&do=search&fromMainBar=1", False
                  XMLHTTP.setRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)"
                  XMLHTTP.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
                  XMLHTTP.send argumentString
                  result = XMLHTTP.responsetext
                  Set XMLHTTP = Nothing
                  End Sub
                  

                  推薦答案

                  我認為你需要一個帶問號的 & 符號

                  I think you need an ampersand where you have a question mark

                  argumentString = "&search_term=eggs&search_app=forums"
                  

                  這篇關于在 VBA HTTP Post 請求中傳遞參數的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Browser waits for ajax call to complete even after abort has been called (jQuery)(即使在調用 abort (jQuery) 之后,瀏覽器也會等待 ajax 調用完成)
                  JavaScript innerHTML is not working for IE?(JavaScript innerHTML 不適用于 IE?)
                  XMLHttpRequest cannot load, No #39;Access-Control-Allow-Origin#39; header is present on the requested resource(XMLHttpRequest 無法加載,請求的資源上不存在“Access-Control-Allow-Origin標頭) - IT屋-程序員軟件開發技術分
                  NETWORK_ERROR: XMLHttpRequest Exception 101(NETWORK_ERROR:XMLHttpRequest 異常 101)
                  XMLHttpRequest 206 Partial Content(XMLHttpRequest 206 部分內容)
                  Restrictions of XMLHttpRequest#39;s getResponseHeader()?(XMLHttpRequest 的 getResponseHeader() 的限制?)
                    • <bdo id='nzHCx'></bdo><ul id='nzHCx'></ul>
                          <tbody id='nzHCx'></tbody>
                        1. <legend id='nzHCx'><style id='nzHCx'><dir id='nzHCx'><q id='nzHCx'></q></dir></style></legend>
                          <i id='nzHCx'><tr id='nzHCx'><dt id='nzHCx'><q id='nzHCx'><span id='nzHCx'><b id='nzHCx'><form id='nzHCx'><ins id='nzHCx'></ins><ul id='nzHCx'></ul><sub id='nzHCx'></sub></form><legend id='nzHCx'></legend><bdo id='nzHCx'><pre id='nzHCx'><center id='nzHCx'></center></pre></bdo></b><th id='nzHCx'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='nzHCx'><tfoot id='nzHCx'></tfoot><dl id='nzHCx'><fieldset id='nzHCx'></fieldset></dl></div>
                          <tfoot id='nzHCx'></tfoot>

                          1. <small id='nzHCx'></small><noframes id='nzHCx'>

                            主站蜘蛛池模板: 美女日皮网站 | 久久亚洲一区二区三区四区 | 国产精品国产a级 | 欧美一区二区三区 | 国产免费一区二区 | 成人午夜精品一区二区三区 | 久久日韩精品一区二区三区 | 91网站在线观看视频 | 欧美a区 | 久久久久国产一区二区三区四区 | 中文字幕欧美一区二区 | 鸳鸯谱在线观看高清 | 蜜桃视频在线观看免费视频网站www | 精品国产乱码久久久久久牛牛 | 久久久久久久久久久久亚洲 | 羞羞在线视频 | 有码在线 | 精品国产一区二区三区在线观看 | 成人午夜性成交 | 亚洲精品久久久久久国产精华液 | 逼逼视频 | 免费观看成人av | 精品一区在线免费观看 | 亚洲国产黄 | 九色www| 国产成人高清在线观看 | 美国黄色一级片 | 人人性人人性碰国产 | 午夜亚洲 | 久久99精品久久久久久国产越南 | 91久久爽久久爽爽久久片 | 亚洲最大福利网 | a毛片 | 一片毛片 | 九色av| 日韩视频专区 | 国产精品久久久精品 | 综合精品久久久 | 久久69精品久久久久久久电影好 | 久久久久久久一区 | 久久久精品影院 |