1

for ループを使用して、単一のデータベース行の列と値を出力しています。これはすべて機能していますが、いくつかの問題があります。列名はブラウザーでの出力に適していないため、エイリアスを関連付ける方法を探しています (これが正しい用語かどうかはわかりません)。

例えば。列名:

cust_name
cust_area

望ましい出力:

Customer name
Customer area

models.py

class Customers(db.Model):
    id = db.Column(db.Integer, primary_key = True)
    cust_name = db.Column(db.String(64))
    cust_area = db.Column(db.String(64))
    cat_id = db.Column(db.Integer(8), index = True)

ビュー.py

customer = Customers.query.filter_by(cat_id = page).first()
test_dict = dict((col, getattr(test, col)) for col in test.__table__.columns.keys())
return render_template('test.html',
    customer = test_dict
    )

test.html

{% for key, value in customer.items() %}
    {{ key }} : {{ value }}
{% endfor %}

ありがとう!

4

1 に答える 1

1

info辞書を使用:

class Customers(db.Model):
    id = db.Column(db.Integer, primary_key=True)
    cust_name = db.Column(db.String(64), info={'name': 'Customer name'})
    cust_area = db.Column(db.String(64), info={'name': 'Customer area'})
    cat_id = db.Column(db.Integer(8), index=True)

次に、次のように列を反復処理できます。

customer = Customers.query.filter_by(cat_id=page).first()
data = dict((c.info.get('name', c.name), getattr(customer, c.name))
            for c in customer.__table__.c)
# Or using dict comprehension syntax (Python 2.7+).
data = {c.info.get('name', c.name): getattr(customer, c.name)
        for c in customer.__table__.c}
于 2013-06-08T08:46:42.943 に答える