我目前正在尝试将JSON对象从服务器发送到客户端,但我不确定我是否正确访问它。
app.post('/url', function(request, response){
....
var result = fuse.search();
response.json(result); // results should be sent back as a response
})
$.post("/url", options, function(response, request) {
var json = response.json;
)
答案 0 :(得分:2)
https://api.jquery.com/jquery.post
jQuery.post( url [, data ] [, success ] [, dataType ] )
成功
类型:函数(PlainObject数据,字符串textStatus,jqXHR jqXHR)
请求成功时执行的回调函数。如果提供了dataType,则是必需的,但在这种情况下可以为null。
如果你进一步阅读
成功回调函数传递返回的数据
这可能意味着你应该做的是
var json = response;
这当然假设您的请求实际 收到JSON