我目前正在以编程方式将产品导入到我的产品目录中,但是,我很难为每个产品上传图像。这是我的代码:
# frobshop/custom_utils/product_importer.py
from oscar.apps.catalogue.models import Product
...
for product in my_product_import_list:
...
product_entry = Product()
product_entry.title = my_product_title
product_entry.product_class = my_product_class
product_entry.category = my_category
product_entry.primary_image = "product_images/my_product_filename.jpg"
product_entry.save()
使用开发服务器进行检查时,产品标题和产品类别等详细信息已成功保存,但是我不确定如何为每个产品设置图像。
整个product_images
文件夹最初位于我的media
目录之外,但是由于未获得任何结果,因此我将粘贴整个图像文件夹复制到media
中目录,但仍然没有结果。我假设跳过了很多步骤,也许在如何在媒体目录中排列图像方面存在约定。但是,我不确定在哪里可以找到这些步骤和约定。
这是我的settings.py
文件中与已安装的应用程序,媒体目录和静态文件有关的部分:
# frobshop/frobshop/settings.py
...
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.flatpages',
'compressor',
'widget_tweaks',
] + get_core_apps(['custom_apps.shipping', 'custom_apps.payment', 'custom_apps.checkout'])
...
STATIC_ROOT = 'static'
STATIC_URL = '/static/'
MEDIA_ROOT = 'media'
MEDIA_URL = '/media/'
为进一步清楚起见,这是我的urls.py
from django.contrib import admin
from django.urls import path
from django.conf.urls import include, url
from oscar.app import application
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
url(r'^i18n/', include('django.conf.urls.i18n')),
path('admin/', admin.site.urls),
url(r'', application.urls),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
答案 0 :(得分:2)
我认为您可以使用File
类来做到这一点:
from django.core.files import File
for product in my_product_import_list:
...
product_entry = Product()
product_entry.title = my_product_title
product_entry.product_class = my_product_class
product_entry.category = my_category
image = File(open("product_images/my_product_filename.jpg", 'rb'))
product_entry.primary_image = image
product_entry.save()
可能您应该在设置中使用OSCAR_MISSING_IMAGE_URL
:
OSCAR_MISSING_IMAGE_URL = "product_images/my_product_filename.jpg" # relative path from media root
或者,您可以使用ProductImage
,如下所示:
from oscar.apps.catalogue.models import ProductImage
product_entry = Product()
product_entry.title = my_product_title
product_entry.product_class = my_product_class
product_entry.category = my_category
product_entry.save()
product_image = ProductImage()
image = File(open("product_images/my_product_filename.jpg", 'rb'))
product_image.original = image
product_image.caption = "Some Caption"
product_image.product = product_entry
product_image.save()
由于ProductImage
与Product
模型具有ForignKey关系,而primary_image
是Product
模型中的方法,该方法从ProductImage模型获取图像,并返回第一个(ProductImage
个对象由该字段中的display_order
个字段排序)