1
我使用內容爲我的移動應用程序的後端。contentful&javascript:將來只有fields.date的條目
匹配燈具存儲在內容豐富。 我要查詢的下一場比賽,但我得到了以下錯誤:
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){
}
)
}
當我將參數作爲對象傳遞時,過濾器不再被應用。你有什麼想法是什麼原因? – ManuKaracho
傳遞字符串仍然工作「contentful.entries( 「CONTENT_TYPE =」 + mainConfig.config.contentType.match + 「&順序=」 +順序+ 「&fields.datum [GTE] =」 + GT )。然後( // success' – ManuKaracho
Hm。你使用的是哪個版本?mainConfig.config.contentType.match的值是多少? – sdepold