Questions tagged «post»

POST是HTTP协议方法之一;当客户端需要将数据发送到服务器时(例如上载文件或提交完整的表单时),将使用此选项。“ post”一词有多种含义,但此标记专门用于HTTP POST请求。



14
POST JSON失败,出现415不支持的媒体类型,Spring 3 mvc
我正在尝试向Servlet发送POST请求。通过jQuery通过以下方式发送请求: var productCategory = new Object(); productCategory.idProductCategory = 1; productCategory.description = "Descrizione2"; newCategory(productCategory); newCategory在哪里 function newCategory(productCategory) { $.postJSON("ajax/newproductcategory", productCategory, function( idProductCategory) { console.debug("Inserted: " + idProductCategory); }); } 而postJSON是 $.postJSON = function(url, data, callback) { return jQuery.ajax({ 'type': 'POST', 'url': url, 'contentType': 'application/json', 'data': JSON.stringify(data), 'dataType': 'json', 'success': callback }); …

5
使用curl发布POST多部分/表单数据的正确方法是什么?
我使用以下语法来发布文件以及一些参数: curl -v -include --form "key1=value1" --form upload=localfilename URL 该文件的大小约为500K。首先,我看到发送端的内容长度为254。稍后服务器响应的内容长度为0。我在哪里出错? 这是命令的完整跟踪。 * Couldn't find host xxx.xxx.xxx.xxx in the _netrc file; using defaults * About to connect() to xxx.xxx.xxx.xxx port yyyy (#0) * Trying xxx.xxx.xxx.xxx... * Adding handle: conn: 0x4b96a0 * Adding handle: send: 0 * Adding handle: recv: 0 * …
164 forms  post  curl 

4
如何使用PhantomJS提交表单
我正在尝试使用phantomJS(真棒的工具btw!)为具有登录凭据的页面提交表单,然后将目标页面的内容输出到stdout。我可以使用幻像访问该表单并成功设置其值,但是我不太确定提交表单并输出后续页面内容的正确语法。到目前为止,我有: var page = new WebPage(); var url = phantom.args[0]; page.open(url, function (status) { if (status !== 'success') { console.log('Unable to access network'); } else { console.log(page.evaluate(function () { var arr = document.getElementsByClassName("login-form"); var i; for (i=0; i < arr.length; i++) { if (arr[i].getAttribute('method') == "POST") { arr[i].elements["email"].value="mylogin@somedomain.com"; arr[i].elements["password"].value="mypassword"; // …

10
如何在axios中设置标题和选项?
我使用Axios来执行这样的HTTP发布: import axios from 'axios' params = {'HTTP_CONTENT_LANGUAGE': self.language} headers = {'header1': value} axios.post(url, params, headers) 这样对吗?还是我应该做: axios.post(url, params: params, headers: headers)
159 javascript  post  axios 

9
如何使用HTTP POST选择和上传HTML和PHP多个文件?
我有使用进行单个文件上传的经验<input type="file">。但是,我一次不能上传多个文件。 例如,我希望能够一次选择一系列图像,然后将它们上传到服务器。 如果可能的话,最好使用单个文件输入控件。 有谁知道如何做到这一点?谢谢!
154 php  html  http  post  upload 

5
约定应返回哪些REST PUT / POST / DELETE调用?
根据“ REST意识形态”,对于PUT / POST / DELETE请求,响应正文中应包含什么? 那么返回码呢?是否HTTP_OK足够? 制定此类约定的原因是什么? 我找到了一篇不错的文章来描述POST / PUT的区别:POST vs PUT, 但是它仍然无法回答我的问题。
153 rest  http  post  http-delete 


10
如何修复java.net.SocketException:管道损坏?
我正在使用apache commons http客户端使用post方法调用url来发布参数,它很少抛出以下错误。 java.net.SocketException: Broken pipe at java.net.SocketOutputStream.socketWrite0(Native Method) at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) at java.net.SocketOutputStream.write(SocketOutputStream.java:136) at java.io.BufferedOutputStream.write(BufferedOutputStream.java:105) at java.io.FilterOutputStream.write(FilterOutputStream.java:80) at org.apache.commons.httpclient.methods.ByteArrayRequestEntity.writeRequest(ByteArrayRequestEntity.java:90) at org.apache.commons.httpclient.methods.EntityEnclosingMethod.writeRequestBody(EntityEnclosingMethod.java:499) at org.apache.commons.httpclient.HttpMethodBase.writeRequest(HttpMethodBase.java:2114) at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:1096) at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:398) 有人可以建议导致此异常的原因以及如何对其进行调试吗?
150 java  exception  post  sockets 

5
提交POST表单后,打开一个显示结果的新窗口
JavaScript提交请求(例如表单提交)向您展示了如何提交通过POST在JavaScript中创建的表单。下面是我修改的代码。 var form = document.createElement("form"); form.setAttribute("method", "post"); form.setAttribute("action", "test.jsp"); var hiddenField = document.createElement("input"); hiddenField.setAttribute("name", "id"); hiddenField.setAttribute("value", "bob"); form.appendChild(hiddenField); document.body.appendChild(form); // Not entirely sure if this is necessary form.submit(); 我想做的是在新窗口中打开结果。我目前正在使用类似的方法在新窗口中打开页面: onclick = window.open(test.html, '', 'scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,status=no');
149 javascript  html  post 

20
如何获取WordPress发布精选图片网址
我正在使用此功能来获取特色图片: <a href="#" rel="prettyPhoto"> <?php the_post_thumbnail('thumbnail'); ?> </a> 现在,我想在锚标签上单击以获取完整的特色图片,为此我需要在其中添加特色图片网址 <a href="here" rel="prettyPhoto"> 我怎样才能解决这个问题?
144 php  wordpress  post 




By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.