我使用内容作为移动应用的后端。
匹配夹具存储在contentful中。 我想查询下一个匹配,但是我收到以下错误:
422 (Unprocessable Entity)
我检索下一场比赛的功能:
function nextOpponent(){
var content_Type = mainConfig.config.contentType.match // Matches
var order = "fields.datum";
var gt = new Date().toLocaleString();
console.log(gt);
var query = "content_type=" + content_Type +
"&order=" + order +
"&fields.datum%5Bgte%5D=" + encodeURI(gt);
contentful.entries(query).then(
//success
function(response){
$scope.nextMatch = response.data.items[0];
console.log($scope.nextMatch);
},
//error
function(response){
}
)
}
答案 0 :(得分:4)
您面临的问题主要是因为日期字符串格式错误。日期字符串必须遵循ISO-8601 format。您可以使用内置JS函数Date#toISOString或您选择的日期格式库来创建这样的格式化字符串。除此之外,您可以将参数作为对象传递。
以下代码使用内置日期方法:
var gt = new Date().toISOString();
contentful.entries({
content_type: content_Type,
order: order,
'fields.datum[gte]': gt
}).then(function () {
// go ahead here...
});
附加说明:
Contentful将根据请求的URL缓存查询结果。因此,如果您不需要高精度,我建议使用仅反映当前日期或当天相应小时的时间戳。例如。 2015-07-28
或2015-07-28T15:00