带有django的xhtml2pdf中的可变图像路径

Variable image paths in xhtml2pdf with django

我需要显示具有可变路径的图像,因为用户输入的图像.. 如果我提供像 <img height='200px' src="http://127.0.0.1:8000/media/images/photo.jpeg" alt="Image of student"> 这样的 url 它可以工作,但是当我将它更改为 <img src="{{ result.image_of_student.url }}" alt="Image of student">

时它就不起作用

如何进行这项工作,因为每个 url 都不一样。 在教程中,他们使用了 <img src={{ result.image_of_student.path}} alt="Image of student"> 这对他们有用但对我不起作用

改为<img class='image' height='200px' src='{{result.image_of_student.path}}' alt="Image of student">

添加单引号或双引号即可!