我实际上是在React Native上尝试使用带有JS SDK的Clarifai API。我使用生成的API密钥在文档上尝试了这些示例,但所有结果都为空hits
。
例如:
const app = new Clarifai.App({
apiKey: 'xxx'
});
app.inputs
.search({ input: { url: 'https://cdn-elle.ladmedia.fr/var/plain_site/storage/images/imports/repack/elle-a-table/poelee-de-legumes-et-avocat-oeufs-au-plat-et-labne-3652328/86416226-2-fre-FR/Poelee-de-legumes-et-avocat-oeufs-au-plat-et-labne.jpg' } })
.then(
function(response) {
console.log(response);
// do something with response
},
function(err) {
console.log(err);
// there was an error
}
);
在response
日志中,hits
是一个空数组。我真的不明白为什么。
我尝试使用其他食物图片,但结果相同。也许我忘记了其他参数?
任何人都已经尝试过