- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我的 API 提供 4xx http 响应代码时,我正在尝试发送 JSON 响应正文。当代码为 200 时一切正常,但更改为 4xx 时,没有收到正文。 Chrome 的 Postman 显示 body 响应,但 XHR(Chrome,FF)没有。
有可能用 nginx CORS 在 XHR 中获取响应主体吗?正确设置(我将其设置为简单地 echo ...Allow-Origin: $http_origin)?我将 nginx 作为 proxy_pass 到 127.0.0.1:9001 上的实际 API 服务器。当我发送已知凭据时,CORS 和 Allow-Origin 都可以正常工作并显示 200 OK。如果我只是使用错误的密码,我会在 Firebug 中看到错误状态代码,但 XHR 对象(也是 jQuery 的 $.ajax)的状态 = 0,即使请求到达 API 服务器也是如此。
至少我希望能够在 XHR 对象中获取 4xx 状态代码,这样我至少可以显示某些 4xx 代码的一般信息,而不是一般的“它不起作用”。这也不可用,我总是得到 status=0,即使 API 被命中并且正确的响应代码被记录在 nginx 中。
更新 3/23 Javascript XHR 代码:
var xhr = new XMLHttpRequest();
xhr.open('POST', 'https://arinna-api/v1/401', true);
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xhr.onload = function () {
// do something to response
console.log(this);
};
播放框架代码返回状态 200 OK JSON 内容类型响应体:
SimpleResult(
header = ResponseHeader(200, Map(CONTENT_TYPE -> "application/json")),
body = Enumerator("{\"error\":\"invalid grant\"}".getBytes())
)
200 OK 按预期工作:
将 HTTP 代码更改为 401 会导致 XMLHttpRequest 无法接收到响应正文(xhr.status 也为 0 而不是 401):
SimpleResult(
header = ResponseHeader(401, Map(CONTENT_TYPE -> "application/json")),
body = Enumerator("{\"error\":\"invalid grant\"}".getBytes())
)
xhr.send('username=username&password=badpassword&grant_type=password&client_id=mobile_platform');
Postman按预期工作:
是否可以通过 XHR 获取 4xx 响应主体和状态代码?根据W3C Status Code Definitions在 HTTP 4xx 上:
Except when responding to a HEAD request, the server SHOULD include an entity containing an explanation of the error situation, and whether it is a temporary or permanent condition. These status codes are applicable to any request method. User agents SHOULD display any included entity to the user.
然而,根据this discussion :
2) Browsers do not display the text/html response body of a HTTP 401 response, instead, they just pop up a modal authentication dialog (until "cancel" is pressed).
3) Servers do not send a meaningful response body with the 401 status as browsers do not display it anyway.
最佳答案
下面的代码按预期运行:
Application.scala
object Application extends Controller {
def index = Action { request =>
Ok(views.html.index())
}
def indexPost = Action { request =>
Unauthorized("test").withHeaders(ACCESS_CONTROL_ALLOW_ORIGIN -> "*")
}
}
路线
GET / controllers.Application.index
POST / controllers.Application.indexPost
index.html.scala
@()
@main("Welcome to Play 2.1") {
<script type="text/javascript">
var xhr = new XMLHttpRequest();
xhr.open('POST', 'http://localhost:9000/');
xhr.onload = function () {
console.log(this);
};
xhr.send();
</script>
}
文本 "test"
显示在响应中(Opera、Chrome 和 Firefox)。请注意,我在 9000
和 9001
端口运行了两次 Play,并使用了 Play 2.2.1
。然后从 Play at 9001
我向 9000
发出请求。
关于scala - 播放 2.2.1 SimpleResult 4xx 响应主体是否可以通过 CORS XHR?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22570550/
我试图将护照逻辑放入 Controller 文件中,但问题是当我将逻辑放入 Controller 中时,它告诉我“无法读取未定义的属性“主体””,但是当我将代码移至索引时,所有内容都会路由向右走 in
我正在学习 Javascript,我正在尝试创建一个简单的下拉菜单。我想要的功能的一个例子可以在谷歌主页的顶部菜单中看到,带有“更多”和“设置”下拉菜单。具体来说,当您单击关闭菜单时,菜单会消失。 我
我正在努力让 Swagger 正确呈现我的 ServiceStack 服务。 我希望看到一个 UserId 字符串作为表单参数,一个 PrivateCustomer 对象作为主体参数,但是尽管 Use
注意:由于随后的研究,这个问题已经完全重组。 我正在尝试从 Shiro 的主题 PrincipalCollection 中检索值.我在集合中添加了两个主体。 Username和 UUID .当我试图记
我们正在开发一个将 OAuth 2 用于两个用例的应用程序: 访问后端微服务(使用 client_credentials) 验证应用程序的用户(使用 authorization_code ,因此将用户
我有这段代码生成一个将 myNumber 乘以 5 的委托(delegate) ParameterExpression numParam = Expression.Parameter(typeof(i
我有一些jquery, $( document ).ready(function() { body=$(body).html; $("html").html(body); }); 这应
我创建了一个通用异常 DTO,它也扩展了 RuntimeException。通过这种方式,可以在应用程序中使用它,也可以将其用作 DTO。问题是当我将 DTO 应用于 ResponseEntity 构
在 Angular 5 HttpClient 中,我可以通过这种方式设置 HttpParams()。 const body = new HttpParams() .set('email', '
我正在从 RabbitMQ 读取数据,如下所示: connection = factory.newConnection(); ch = connection.createChannel() ; Str
如何使用不同类型的调用和响应主体来改造 PUT?我有一个错误限制。类型必须相同 and 。响应bodie可以包含int值,但call不应该,因为当我用int值初始化CallBody对象时,它已经包
原则上我想做这样的事情: #grab some value from outer source (i.e. file or list defined by another programer) set
我知道如何使用TextureRegions 创建动画并将其应用于非box2d 游戏中的对象。 但是在 libgdx 的 box2d 中,我不知道该怎么做。在CocosD2中,Sprite对象中有run
我有这段代码生成一个将 myNumber 乘以 5 的委托(delegate) ParameterExpression numParam = Expression.Parameter(typeof(i
我已经计算了花括号的数量,但无法弄清楚为什么类主体不完整。每次我试图修复类(class)时,都会把整个类(class)弄乱。问题出在代码中的最后一个类。最后一个花括号给我带来了类里面的麻烦。我正在使用
有人知道吗?我只能看到 ApplyTorque 和 SetAngularVelocity,我只想在将对象添加到模拟之前旋转对象,例如:所以我有一个 crate 倾斜靠在墙上,另一个 crate 是平的
我可以获得如何让图像出现在 box2d 主体上的简单答案吗?我尝试为图像和主体创建 x 和 y int,但是一旦主体移动,图像就会保持静态。如果您确实回答,请尽可能解释一下代码。如果您对我的完整源代码
我知道我可以通过使用 PolygonRegion 来做到这一点,但问题是我使用 scene2d.Stage 和几个 Actor 。您可能知道阶段使用 SpriteBatch 而我无法渲染 Polygo
您好,我有以下代码: function redirect(){ window.location.href='logged_out_chat.php'; } ...在我的标题和以下正文标记中:
我在 didBegin(contact:) 中触发了 SpriteKit 物理接触。我为要移出屏幕的 Dot 对象的实例抓取物理体,但是当我尝试像这样更改其位置时,没有任何反应: 第一种方法 /* I
我是一名优秀的程序员,十分优秀!