问题:字典更新序列元素#0的长度为5; 2个为必填项

问题描述

从python运行flask框架时,我遇到了问题标题中提到的问题。 可能是语法错误,但我无法弄清楚

这是代码:

# do the transaction
else:

    # sustract stocks value from cash and update users table
    current_user["cash"] = current_user["cash"] - final_price
    db.execute("UPDATE users SET cash = :cash WHERE id = :id",cash = current_user["cash"],id = current_user["id"])


    # query database to know if current user already have at least one of the requested shares
    share_holder = dict(db.execute("SELECT * FROM stocks WHERE owner = :owner AND symbol = :symbol",owner = current_user["username"],symbol = symbol))

    # if user doesn't have any of this particular shares
    if not share_holder:
        db.execute("INSERT INTO stocks (symbol,owner,amount,users_id) VALUES (:symbol,:owner,:amount,:users_id)",symbol = symbol,amount = shares,users_id = current_user["id"])
        share_holder.clear()
        return render_template("buy.html")

    # if user have at least one share already
    else:
        new_shares_amount = int(share_holder["amount"]) + shares
        db.execute("UPDATE stocks SET amount = :amount WHERE id = :id",amount = new_shares_amount,id = share_holder["id"])
        return render_template("buy.html")

这是出现错误的问题部分,在第4行:

# if user have at least one share already
else:
    new_shares_amount = int(share_holder["amount"]) + shares
    db.execute("UPDATE stocks SET amount = :amount WHERE id = :id",id = share_holder["id"])
    return render_template("buy.html")

预先感谢

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...