涡轮齿轮2 将查询行的价格和成本相乘

  • 本文关键字:查询 python xhtml turbogears2
  • 更新时间 :
  • 英文 :


我知道这个问题已经被问过了,但我无法真正理解答案背后的想法,因为我是编程初学者,几乎所有东西对我来说都是新的。

我正在尝试将每种成分的价格与其数量相乘以获得其成本,然后将所有成分的成本相加以获得食谱的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
我没有

一步一步地检查代码,但总体思路似乎是正确的。我看到的主要问题是您正在公开模板recipe4.templates.newnew但您没有返回字典。

每当公开模板时,控制器操作都必须返回字典。字典的所有键都将作为变量在模板中提供。

因此,如果您想在模板中final_cost可访问,您应该return dict(final_cost=final_cost)

请参阅 https://turbogears.readthedocs.io/en/latest/turbogears/templating.html#template-variables

我终于在@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)

相关内容

  • 没有找到相关文章

最新更新