Flask-SQLAlchemy什么都不做

时间:2018-10-17 16:29:03

标签: python flask sqlalchemy flask-sqlalchemy

我正在学习使用Python,Flask和SQLAlchemy构建API。当我开始将SQLAlchemy集成到我的代码中时,任何尝试使用SQLAchemy的请求都将无济于事。没有错误代码,它只是坐在那里旋转。这是我的代码的主要部分:

App.py

from flask import Flask
from flask_restful import Api
from flask_jwt import JWT

from security import authenticate, identity
from Resources.user import UserRegister
from Resources.item import Item, ItemList


app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = "postgresql://postgres:mypassword@localhost:5000/mydatabase"
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.config['PROPAGATE_EXCEPTIONS'] = True
app.secret_key = 'jose'
api = Api(app)


jwt = JWT(app, authenticate, identity)

api.add_resource(Item, '/item/<string:name>')
api.add_resource(ItemList, '/items')
api.add_resource(UserRegister, '/register')

if __name__ == '__main__':
    from db import db
    db.init_app(app)
    app.run(port = 5000, debug = True)

db.py

from flask_sqlalchemy import SQLAlchemy 

db = SQLAlchemy()

item.py-Models

from db import db

class ItemModel(db.Model):
    __tablename__ = 'parts'

    partid  = db.Column(db.Integer, primary_key = True)
    partdescript = db.Column(db.String(80))
    lastcost = db.Column(db.Float(precision=2))


    def __init__(self, partid, partdescript, _price):
        self.partid = partid
        self.partdescript = partdescript
        self.price = price


    def json(self):
        return {'name': self.partid, 'partdescript': self.partdescript, 'price':self.price}

    @classmethod
    def find_by_name(cls, partid):
        print("find_by_name")
        #print(partid)
        #print(cls.query.filter_by(partid = partid))

        qry = cls.query.filter_by(partid = partid).first()  # this is where it is getting stuck

        return qry

    def save_to_db(self):

        db.session.add(self)
        db.session.commit()


    def delete_from_db(self):
        db.session.delete(self)
        db.session.commit()

item.py-资源

from flask_restful import Resource, reqparse
from flask_jwt import jwt_required
from Models.item import ItemModel

class Item(Resource):
    parser = reqparse.RequestParser()

    parser.add_argument(
        'partdescript',
        type = str,
        required = False,
        help = "This field cannot be left blank!"
    )

    parser.add_argument(
        'lastcost',
        type = float,
        required = True,
        help = "This field cannot be left blank!"
    )

    #@jwt_required()
    def get(self, name):
        #print("get")
        part = ItemModel.find_by_name(name)
        #print(part)

        if part:
            #print("get if statement")
            return part.json(), 201
        return {'message': 'Part not found'}, 404

    @jwt_required()
    def post(self, name): #need to have the parser.add_argument for each field
        if ItemModel.find_by_name(name):
            return {'message': "An item with name '{}' already exists.".format(name)}, 400

        data = Item.parser.parse_args()

        item = ItemModel(name, data['partdescript'], data['lastcost'])

        try:
            item.save_to_db()
        except:
            return {"message": "An error occurred inserting the item."}, 500

        return item.json(), 201

    @jwt_required()
    def delete(self, name):
        item = ItemModel.find_by_name(name)
        if item:
            item.delete_from_db()

        return {'message': 'Item deleted'}

    @jwt_required()
    def put(self, name):
        data = Item.parser.parse_args()

        item = ItemModel.find_by_name(name)
        updated_item = ItemModel(name, "",data['lastcost']) #might need to put item descript in

        if item is None:
            item = ItemModel(name, data['lastcost'])
        else:
            item.lastcost = data['lastcost']

        item.save_to_db()

        return item.json()


class ItemList(Resource):
    @jwt_required()
    def get(self):
        return {'items': [item.json() for item in ItemModel.query.all()]}

如果我只是使用python正确访问我的数据库,则请求功能就可以了。只有当我尝试使用SQLAlchemy时。我一直在寻求帮助的人可能是因为我在代码中同时拥有SQLAlchemy和直接访问权限。我将所有内容都转换为SQLAlchemy,现在所有请求都可以旋转。我不使用SQLAlchemy的旧代码仍然有效。

我尝试过的事情: 重启系统 卸载并重新安装SQLAlchemy 使用cURL而不是Postman发送请求 将错误的数据库名称连接起来,看看是否会出现错误。 以管理员身份运行所有应用程序

我输入了一些打印语句以查找失败的地方。如果我删除了.first()或.all(),那么我的代码将继续运行,并且我可以打印查询的内容,但这也可以使查询完全不发送。

有什么想法为什么SQLAchemy会坐下来旋转吗?

1 个答案:

答案 0 :(得分:3)

我不确定这是否是原来的代码,但是您的数据库连接URI似乎指向了烧瓶应用程序。

app.config['SQLALCHEMY_DATABASE_URI']="postgresql://postgres:mypassword@localhost:5000/mydatabase"

5000是烧瓶应用程序的默认端口。

5432是postgres的默认端口。

我的第一个建议是确保您提供的SQLAlchemy连接URI正确。

在flask应用程序启动时,SQLAlchemy不会尝试连接数据库;它只会在执行第一个查询时尝试连接数据库。

您可能遇到死锁,您的应用程序试图在端口5000上连接数据库,但是端口5000(烧瓶应用程序)没有响应,因为它当前正忙于尝试与数据库建立连接。

请参见this answer,其中指出,使用带有默认选项的flask开发服务器,一次只能满足一个请求。