如何使用 Meteor React 从 cloudinay cloud 转换图像?
How to transform the image from cloudinay cloud using Meteor react?
我正在使用此代码:
import cloudinary from 'cloudinary';
{cloudinary.Image(
'http://res.cloudinary.com/dtkptr7rt/image/upload/v1512735944/kb4gvy7d4jskexkstcti.jpg'
)}
引发此错误:
Cannot read property 'Image' of undefined
请查看 Cloudinary 的 React 包并按照那里的说明进行操作 - https://github.com/cloudinary/cloudinary-react
无论如何,cloudinary.Image
应该提供 public ID(即图像 ID)而不是 URL。
此外,URL 无法访问。
我正在使用此代码:
import cloudinary from 'cloudinary';
{cloudinary.Image(
'http://res.cloudinary.com/dtkptr7rt/image/upload/v1512735944/kb4gvy7d4jskexkstcti.jpg'
)}
引发此错误:
Cannot read property 'Image' of undefined
请查看 Cloudinary 的 React 包并按照那里的说明进行操作 - https://github.com/cloudinary/cloudinary-react
无论如何,cloudinary.Image
应该提供 public ID(即图像 ID)而不是 URL。
此外,URL 无法访问。