我很难将ajax调用与ExpressJS中的其他调用区分开来。
据我了解,我可以使用request.accepts('json')
来识别 json 请求吗?
问题是 - 显然,每个电话都接受一切!
app.get( '*', function(request, response, next ) {
console.log('request accepts:')
if( request.accepts( 'json' ) ){
console.log( '--> accepts json' )
}
if( request.accepts( 'html' ) ){
console.log( '--> accepts html' )
}
if( request.accepts( 'blah' ) ){
console.log( '--> accepts blah' ) // this does not show up
}
if( request.accepts( 'application/json' ) ){
console.log( '--> accepts json2' )
}
next()
} )
如果我只是访问该页面,它接受 json 和 html。
如果我尝试使用 $.getJSON( ... url ... )
,它也包含 json 和 html。
Headers:
Browser: "Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
Ajax: "Accept application/json, text/javascript, */*; q=0.01"
我不是接受标头的专家,但似乎*/*
部分可能是问题所在。
如何在 ExpressJS 中确定正确的(或者可能是第一个)接受类型?或者:如何区分 JSON 请求和普通网页访问?
几乎所有浏览器发出的GET请求都以*/*
完成,这意味着它几乎接受所有内容。为了做出决定,您可以检查req.accepted
数组。它看起来像这样:
[ { value: 'application/json',
quality: 1,
type: 'application',
subtype: 'json' },
{ value: 'text/html',
quality: 0.5,
type: 'text',
subtype: 'html' } ]
因此,如果存在JSON,则为特殊请求,否则为简单请求
我通过使用数组accepts()
找到了一个似乎有效的解决方案:
if( request.accepts( [ 'json', 'html' ] ) == 'json' ) {
// do something
} else {
// do something else
}