“httppost 302”错误怎么解决?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了“httppost 302”错误怎么解决?相关的知识,希望对你有一定的参考价值。
返回302的意思是服务器内部还要重定向到另外一个地址,就好比登陆成功时返回了302 然后要跳转到首页。
1、302是http重定向。
2、302 redirect: 302 代表暂时性转移(Temporarily Moved )。
3、302转向可能会有URL规范化及网址劫持的问题。可能被搜索引擎判为可疑转向,甚至认为是作弊。
Angularjs - $http Post 上的 500(内部服务器错误)
【中文标题】Angularjs - $http Post 上的 500(内部服务器错误)【英文标题】:Angularjs - 500 (Internal Server Error) on $http Post 【发布时间】:2016-09-15 21:01:45 【问题描述】:我是 Ionic 和 Angular 的新手。我正在使用 angular.js 构建一个带有离子框架的示例。我想通过 $http post 方法调用 WebApi。我检查了这个(ionic-proxy-example)解决方案,我正在尝试使用我的 api 来实现它。当我在示例项目中调用上述示例中提供的 api 时,我得到了记录,但它不适用于我的 api。它抛出 500 内部错误。
这是我的 app.js
angular.module('myApp', ['myApp.controllers', 'myApp.services'])
.constant('ApiEndpoint', url: 'http://localhost:8100/api')
Services.js
angular.module('myApp.services', [])
.factory('Api', function($http, $q, ApiEndpoint)
console.log('ApiEndpoint', ApiEndpoint)
var getApiData = function()
var q = $q.defer();
var data =
Gameweek_ID: '179',
Vender_ID: '1',
Language:'en'
;
var config =
headers :
"Content-Type": "application/json; charset = utf-8;"
;
$http.post(ApiEndpoint.url, data, config)
.success(function (data, status, headers, config)
// $scope.PostDataResponse = data;
alert('success');
console.debug("response :" + data);
q.resolve(data);
)
.error(function (data, status, header, config)
// $scope.ResponseDetails = "Data: " + data +
alert('error');
console.debug("error :" + data);
q.reject(data);
);
return q.promise;
return getApiData: getApiData;
)
controllers.js
angular.module('myApp.controllers', [])
.controller('Hello', function($scope, Api)
$scope.employees = null;
Api.getApiData()
.then(function(result)
console.log("result is here");
jsonresponse = result.data;
$scope.employees = jsonresponse;
)
);
和 Ionic.Project 文件
"name": "Multilingual",
"app_id": "4b076e44",
"proxies": [
"path": "/api",
"proxyUrl": ""
]
我正在尝试了解问题并检查了多种调用 api 的方法。令人惊讶的是,它可以与 ajax 后调用一起使用,而不会出现任何 CORS 错误。当我使用 Angular 时,我试图通过 $http post 来完成这项工作。我觉得这是一个小问题,但我无法弄清楚。将不胜感激解决方案。谢谢。
【问题讨论】:
前端应用程序或后端的错误是从哪里得到的?还要在开发者控制台/网络中检查您的请求是什么样的,并仔细检查您发送的网址 浏览器上的错误,当浏览器向api发出请求时。我在 Fiddler 上 ping 时得到结果。 你在后端得到了什么?您的后端是否需要任何 xcrf 令牌? 当我在没有设置代理的情况下进行简单的 $http 发布时,我在 mozilla 和 chrome 上遇到了跨源资源共享 (CORS) 错误。然后,我检查了这篇帖子 blog.ionic.io/handling-cors-issues-in-ionic 在客户端设置代理,以绕过我在链接中提供的演示中能够做到的 CORS。 【参考方案1】:您已将内容类型设置为 json,因此服务器需要一个 json 字符串,但在您通过对象发送时未收到格式正确的 json 字符串,因此出现错误。
你有$http.post(ApiEndpoint.url, data, config)
的地方把它改成$http.post(ApiEndpoint.url, JSON.stringify(data), config)
。
如果这不起作用,请将您的内容类型更改为 application/x-www-form-urlencoded
并将这一行 $http.post(ApiEndpoint.url, data, config)
更新为 $http.post(ApiEndpoint.url, $httpParamSerializer(data), config)
,不要忘记注入 $httpParamSerializer
函数。
【讨论】:
【参考方案2】:问题是您发送的是带有$http.post
请求的POST,而不是带有$http.get
的GET 请求
【讨论】:
该api配置为接收POST请求。我正在明确发送“数据”。【参考方案3】:尝试如下-
$http(
url: ApiEndpoint.url,
method: "POST",
data: data,
headers: 'Content-Type': 'application/x-www-form-urlencoded'
).Success(..rest code goes here..)
在 WebAPI 中,当我们在 POST 方法中传递多个对象时,我们会收到 500 内部错误,因此我们在这种情况下使用 ViewModel(谈论 asp.net MVC)。
【讨论】:
以上是关于“httppost 302”错误怎么解决?的主要内容,如果未能解决你的问题,请参考以下文章