0

このコードでフィールド名ではなく詳細なフィールド名 (列タイトル) を記述する方法 (xls にエクスポート) ?

def export_as_xls(modeladmin, request, queryset):
    if not request.user.is_staff:
        raise PermissionDenied
    opts = modeladmin.model._meta

    wb = Workbook()
    ws0 = wb.add_sheet('0')
    col = 0
    field_names = []
    # write header row
    for field in opts.fields:
        ws0.write(0, col, field.name)
        field_names.append(field.name)
        col = col + 1

    row = 1
    # Write data rows
    for obj in queryset:
        col = 0
        for field in field_names:
            val = unicode(getattr(obj, field)).strip()
            ws0.write(row, col, val)
            col = col + 1
        row = row + 1   

    f = StringIO()
    wb.save(f)
    f.seek(0)
    response = HttpResponse(f.read(), mimetype='application/ms-excel')
    response['Content-Disposition'] = 'attachment; filename=%s.xls' % unicode(opts).replace('.', '_')
    return response

export_as_xls.short_description = "Export selected objects to XLS"

わかりfield.nameましたが、変更方法がわかりません。このコードはdjangoスニペットサイトからのものです

4

1 に答える 1

0

質問を誤解しているかもしれませんが、field.name を変更したい場合:

for field in opts.fields:
    field.name = 'Foo'

これにより、すべてのフィールド名が「Foo」に変更されます

于 2013-03-07T18:59:19.037 に答える