1
我想在我的樹枝來加載每個用戶的圖像使用以下行:爲什麼圖像不能在Twig模板中加載?
<img src="/web/images/users/{{ topic.user.image }}" class="w3-circle" width="100" height="100">
。我肯定路徑是正確的。用戶頭像位於web/images/users /和選定的圖像中。那麼問題在哪裏呢?
,這就是我如何嘗試上傳圖像文件中登記控制器:
/** @var UploadedFile $file */
$file = $user->getImageForm();
$filename = md5($user);
$file->move(
$this->get('kernel')->getRootDir() . '/../web/images/users/',
$filename
);
$user->setImage($filename);
你試過了嗎?src =「web/images/users/{{topic.user.image}}」....' – RiggsFolly
是的,但仍然不起作用 –
它呈現時的樣子是什麼。 – Musa