通常我们读取文件会同web页面结合,从html的input file 中上传文件,后台再进行获取。
//前端html页面
<form action="/importData/" method="post" enctype="multipart/form-data">
**{% csrf_token %}**
<input type='text' name='textfield' id='textfield' class='txt' />
<input type='button' class='btn' value='浏览...' />
<input type=