home.html
<form action="" method="POST" enctype="multipart/form-data">
{% csrf_token %}
<input type="file" name = 'img' >
<button type="submit"> Post On Facebook </button>
</form>
views.py
def home(request):
if request.method == 'POST':
# get the image absolute location
return render(request,'home.html')
我想要文件路径,这样我就可以使用graphapi将文件上传到facebook上。
1条答案
按热度按时间js4nwp541#
您需要在模型文件中设置上载路径。然后可以将其保存到视图函数中的特定路径。
详情请参阅-https://simpleisbetterthancomplex.com/tutorial/2016/08/01/how-to-upload-files-with-django.html