我一直在尝试通过 magento SOAP API 获取类别图像。当我访问 catalog_category.info 方法时,它只传递图像名称,而不是图像的 URL。
如何使用 SOAP API 调用获取类别图像的完整 URL?
我一直在尝试通过 magento SOAP API 获取类别图像。当我访问 catalog_category.info 方法时,它只传递图像名称,而不是图像的 URL。
如何使用 SOAP API 调用获取类别图像的完整 URL?
类别图像位于 magentohost/magento/media/catalog/category/ 文件夹中,因此完整 url 为 magentohost/media/catalog/category/image_name
如果有人想找出他们特定的 Magento 安装的位置——假设你知道图像文件名——转到终端并使用命令locate [file-name]
。它应该返回图像位置的完整路径。我的是[magento-root-dir]/pub/media/catalog/category/[file-name]
我希望这会有所帮助。干杯!