6

我在 odoo 中有一个自定义 Web 表单。我需要上传文件。我的控制器.py:

@http.route(['/test/'], type='http', auth="user", methods=['GET', 'POST'], website=True)
def upload_files(self, **post):
    values = {}
    form_vals = {}

              ...........

    if post.get('attachment',False):
        Attachments = request.registry['ir.attachment']
        name = post.get('attachment').filename      
        file = post.get('attachment')
        attachment_id = Attachments.create(request.cr, request.uid, {
            'name':name,
            'res_name': name,
            'type': 'binary',
            'res_model': 'project.issue',
            'res_id': form_id,
            'datas': base64.encode(file.read()),
        }, request.context)

            ............

上面的代码创建了附件,名称为 res_model 等,但附件已损坏,无法打开。

XML 文件:

    ..........

<form t-attf-action="/test/done" method="post" enctype="multipart/form-data" class="form-horizontal mt32"><div t-attf-class="form-group">

    ..........

    <div t-attf-class="form-group">
        <label class="col-md-3 col-sm-4 control-label" for="attachment">Attachments</label>
        <div class="col-md-7 col-sm-8">
            <input name="attachment" type="file" class="file" multiple="true" data-show-upload="true" data-show-caption="true" lass="file" data-show-preview="true"/>
        </div>
    </div>>

    ..........
</form>

在控制台中:

name = post.get('attachments_for_issue').filename
_logger.error("name is: %r", name)
file = post.get('attachments_for_issue')
_logger.error("file is?: %r", file.read())

返回:

5092 ERROR HDHDHD openerp.addons.test.controllers.controllers: name is: u'test_image.jpg'
5092 ERROR HDHDHD openerp.addons.test.controllers.controllers: file is?: <FileStorage: u'test_image.jpg' ('image/jpeg')>
4

3 回答 3

1

我认为问题出在 base64.encode(file.read())

从 python 文档我们有
base64.encode(input, output)¶
编码输入文件的内容并将生成的 base64 编码数据写入输出文件。输入和输出必须是文件对象或模仿文件对象接口的对象。input 将被读取,直到 input.read() 返回一个空字符串。encode() 返回编码数据加上一个尾随换行符 ('\n')。

因此,尝试以这种方式使用并检查
attachment = file.read()
然后
'datas' : attachment.encode('base64')

于 2015-08-10T09:57:38.493 回答
0

如果 getvalue() 不起作用或出现类似它给我的问题,您也可以尝试:

file = post.get('attachment').stream.read()

然后:

'datas': base64.encodestring(file)
于 2018-12-14T09:17:07.913 回答
0

这是它的工作原理:

file = post.get('attachment')
attach = file.stream
f = attach.getvalue()

接着:

...
'datas': base64.encodestring(f),
...

这会在附件中添加文件

于 2015-08-11T13:53:50.450 回答