如何在Ionic框架中导入和使用Clarifai& Angular 2+

时间:2018-01-28 23:33:47

标签: angularjs angular ionic-framework ionic2 clarifai

以下是我正在尝试使用的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);
  }
);

0 个答案:

没有答案