$('#submit').click(function (event) {
event.preventDefault()
var ingredient = $('#ingredient').val()
console.log(ingredient)
$.ajax({
url: 'http://www.food2fork.com/api/search?key={MY_API_KEY}&q=shredded%20chicken',
method: 'GET',
dataType: "JsonP",
crossDomain: true,
success: function(data){
console.log(data)
},
error: function (xhr, data, error) {
console.log("error is "+error)
}
})
})
您好我刚刚开始编码并且我正在尝试创建一个应用程序,从冰箱中取出您的食材并返回食谱但我在成功回调中得到403禁止错误,任何想法为什么?