更新 - 2016-01-30
正如我在评论中所建议的那样:
我仍然无法传递请求。这是控制台日志:
var options = {
fields: {sessionId: 1},
sort: {date_inserted: -1}
};
var sessionId = sessionDB.findOne({}, options);
------------------初始票据--------------------------- -
我有一个在本地运行的java rest应用程序,到目前为止接受一个get方法并返回一个json字符串:
另一种方法是POST,它应该转换,验证并保存发送表单中的信息并返回200个答案。如果在转换,验证或持久性过程中出现任何问题 - 抛出异常(例如BadRequest或500)。
这是其余方法(我省略了简洁验证,构建方法以及转换器和转换器提供程序类):
XMLHttpRequest cannot load http://localhost:8080/RimmaNew/rest/appointments.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://localhost' is therefore not allowed access. The response had HTTP status code 400
客户端不在应用程序中(我认为这可能会有用) - 这是一个简单的HTML文件,在我的计算机上有这个jQuery脚本:
@POST
@Produces("application/json")
@Consumes("application/x-www-form-urlencoded")
public Response bookAppointment(@FormParam("date") Date appDate,
@FormParam("time") Time appTime, @FormParam("type") String appType,
@FormParam("clientName") String clientName, @FormParam("email") String clientEmail,
@DefaultValue("") @FormParam("message") String clientMsg) {
//externalize the validation of all fields to concentrate on "positive"
//scenario only
validator(appDate, appTime, appType, clientName, clientEmail);
Appointment appointment = build(appDate, appTime, appType,clientName,
clientEmail, clientMsg);
try {
repository.add(appointment);
return Response.ok(appointment).build();
} catch (Exception e) {
throw new InternalServerErrorException("Something happened in the application "
+ "and this apointment could not get saved. Please contact us "
+ "to inform us of this issue.");
}
}
我想提交一个表单,以便使用@FormParam带注释的属性访问其params。在我发送的每个请求中,我都没有收到任何抛出的错误,状态总是为0.你看到我在哪里犯错或者我错过了什么?
答案 0 :(得分:0)
状态代码为0表示请求未发生。为了获得状态代码,必须发生有效的http交互,如果没有,则没有状态代码。
发生这种情况的主要原因是:
所有这些都应该在javascript控制台上显示错误(最奇怪的是将自己显示为失败的OPTIONS请求的CORS)