我知道已经问过这个问题了,但是由于我是编程的初学者,所以我几乎无法真正掌握答案背后的想法。
我正在尝试将每种成分的价格乘以数量以获取成本,然后将所有成分的成本相加以获得配方的final_cost并在我的html模板上查看。
我有一个查询,该查询从数据库返回键和值的字典,现在我陷入了计算并查看html上的final_cost
@expose('recipe4.templates.newnew')
def getTotalCost(self):
i = Ingredient
ic = Ingredient_Cost
ri = Recipe_Info
r = Recipe
val = DBSession.query(i.ingredient_name, ic.Unit_of_Measure, ri.quantity, ic.price_K, ic.updated_at).filter \
(r.recipe_name == "pancake",
r.recipe_id == ri.recipe_id,
ri.ingredient_id == i.ingredient_id,
i.ingredient_id == ic.ingredient_id)
dict(entries=val)
final_cost=0
for k,v in entries:
price=entries.price_K
qty=entries.quantity
cost=price*qty
final_cost+=cost
return final_cost
答案 0 :(得分:0)
我没有逐步检查代码,但总体思路似乎是正确的。
我看到的主要问题是您正在暴露模板recipe4.templates.newnew
,但没有返回字典。
每当公开模板时,控制器动作必须返回一个字典。字典中的所有键都可以在模板中作为变量使用。
因此,如果您想在模板中访问return dict(final_cost=final_cost)
,则应该执行final_cost
。
请参见https://turbogears.readthedocs.io/en/latest/turbogears/templating.html#template-variables
答案 1 :(得分:0)
我终于在@amol的帮助下进一步解决了自己的问题,并进行了进一步的研究,它对我有用。
sub_cost=[ ]
final_cost=[ ]
for k in val: #iterate through each row of tuples in the returned db object
for v in k: #iterate through each values of individual tuples
price=k[3] #position of price in tuple
qty=k[4]
cost=price*qty
sub_cost.append(cost)
break #breaks the loop
final_cost.append(sum(sub_cost))
return dict(final_cost=final_cost)