React Cloudinary Image Transformation Exception

时间:2017-09-20 22:27:46

标签: reactjs cloudinary

我正在使用Cloudinary构建一个React网站,并且在尝试使用Transformations时出现问题。

这是我的JSX:

<Image cloudName={'my-cloud-name'} publicId={'my-image.jpg'}>
  <Transformation width={400} height={300}/>
</Image>

如果没有Transformation标记,则会显示图片,但如果出现Transformation标记,则会出现此错误:

Uncaught TypeError: mapped.filter is not a function
at Image.getChildTransformations (CloudinaryComponent.js:74)
at Image.getTransformation (CloudinaryComponent.js:93)
at Image.getUrl (CloudinaryComponent.js:121)
at Image.prepareState (Image.js:93)
at new Image (Image.js:55)
at ReactCompositeComponentWrapper.mountComponent (common.js:10034)
at ReactCompositeComponentWrapper.wrapper [as mountComponent] (common.js:17264)
at Object.mountComponent (common.js:18081) 
at ReactDOMComponent.mountChildren (common.js:16701) 
at ReactDOMComponent._createContentMarkup (common.js:11459)

我发现没有其他人通过谷歌搜索获得此问题的证据,我尝试了几个不同的例子,但仍然没有运气。

谢谢!

注意:我正在使用cloudinary-react@1.0.4

0 个答案:

没有答案