Questions tagged «post»

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

4
如何从nodejs / express向浏览器发送成功状态?
我在nodeJS / Expressjs服务器中编写了以下代码: app.post('/settings', function(req, res){ var myData = { a: req.param('a') ,b: req.param('b') ,c: req.param('c') ,d: req.param('d') } var outputFilename = 'config.json'; fs.writeFile(outputFilename, JSON.stringify(myData, null, 4), function(err) { if(err) { console.log(err); } else { console.log("Config file as been overwriten"); } }); }); 这使我可以获取提交的表单数据并将其写入JSON文件。 这很完美。但是客户端仍然处于某种发布状态,并最终超时。因此,我需要将某种成功状态或成功标头发送回客户端。 我应该怎么做? 先感谢您!
73 forms  node.js  post  express 

1
使用Wget发布请求?
我想使用wget将图片(使用身份验证令牌“ AUTH_1624582364932749DFHDD”)上传到远程服务器到“ test”文件夹。 该命令不起作用(授权失败),我想确保它与语法无关: wget --post-file=nature.jpg http://ipadress:8080/v1/AUTH_test/test/ --post-data="AUTH_1624582364932749DFHDD" 有什么建议?
73 linux  post  wget 

7
在Chrome调试器中看不到HTTP POST有效负载?
我已签出这个和那个。但是,我的调试器如下所示。 失败例子 。 没有表格数据,没有原始内容 原始示例(*尽管路径与屏幕截图不同,但它们都无法读取发布数据) POST https://192.168.0.7/cgi-bin/icul/;stok=554652ca111799826a1fbdafba9d3ac1/remote_command HTTP/1.1 Host: 192.168.0.7 Connection: keep-alive Content-Length: 419 accept: application/json, text/javascript, */*; q=0.01 Origin: https://192.168.0.7 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36 content-type: application/x-www-form-urlencoded; charset=UTF-8 Referer: https://192.168.0.7/cgi-bin/icul/;stok=554652ca111799826a1fbdafba9d3ac1/smartmomentl/access-point/network Accept-Encoding: gzip, deflate Accept-Language: en-US,en;q=0.8,zh-TW;q=0.6,zh;q=0.4 Cookie: sysauth=f15eff5e9ebb8f152e163f8bc00505c6 command=import&args=%7B%22--json%22%3Atrue%2C%22--force%22%3Atrue%2C%22--mocks%22%3A%22%7B%5C%22DEL%5C%22%3A%7B%7D%2C%5C%22SET%5C%22%3A%7B%5C%22dhcp%5C%22%3A%7B%5C%22lan%5C%22%3A%7B%5C%22.section%5C%22%3A%5C%22dhcp%5C%22%2C%5C%22interface%5C%22%3A%5C%22lan%5C%22%2C%5C%22ignore%5C%22%3A%5C%220%5C%22%2C%5C%22leasetime%5C%22%3A%5C%2212h%5C%22%2C%5C%22range%5C%22%3A%5C%22172.16.0.100-172.16.0.200%5C%22%7D%7D%7D%7D%22%7D HTTP/1.1 200 OK Access-Control-Allow-Origin: …

5
MVC控制器:从HTTP正文获取JSON对象?
我们有一个MVC(MVC4)应用程序,该应用程序有时可能会收到从第三方发送到我们特定URL(“ http://server.com/events/ ”)的JSON事件。JSON事件位于HTTP POST的正文中,而正文则严格为JSON(Content-Type: application/json-不在某些字符串字段中包含JSON的表单帖子)。 如何在控制器主体内部接收JSON主体?我尝试了以下内容,但一无所获 [编辑]:当我说什么都没得到时,我的意思是jsonBody始终为null,无论我将其定义为Object还是string。 [HttpPost] // this maps to http://server.com/events/ // why is jsonBody always null ?! public ActionResult Index(int? id, string jsonBody) { // Do stuff here } 请注意,我知道如果我使用强类型输入参数来声明方法,则MVC会进行整个解析和过滤,即 // this tested to work, jsonBody has valid json data // that I can deserialize using JSON.net …
70 asp.net-mvc  json  post 



14
Android:UnknownHostException
我正在使用Android SDK 2.2,并在模拟器上测试我的应用程序。我想发送一个HTTP Post。当我得到一个UnknownHostException。我已经在manifest.xml中放置了所需的权限 <uses-permission android:name="android.permission.INTERNET" /> 。另外,我可以在模拟器上打开浏览器,然后毫无问题地导航到URL。 这是我的代码: HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost( uri ); HttpResponse response = null; try { // Add your data List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>( 2 ); nameValuePairs.add( new BasicNameValuePair( "id", "edit-name" ) ); nameValuePairs .add( new BasicNameValuePair( "stringdata", …
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.