以下是我正在尝试使用的Clarifai api的快速链接
https://clarifai.com/developer/quick-start/
我已经卸载了npm模块npm install clarifai --save
出于某种原因,我无法导入和使用类似于JS代码示例文档中的api。
如何在Ionic-Angular应用程序中执行与以下JS代码类似的操作:
// instantiate a new Clarifai app passing in your api key.
const app = new Clarifai.App({
apiKey: 'YOUR_API_KEY'
});
// predict the contents of an image by passing in a url
app.models.predict(Clarifai.GENERAL_MODEL,
'https://samples.clarifai.com/metro-north.jpg').then(
function(response) {
console.log(response);
},
function(err) {
console.error(err);
}
);