把请求python烧瓶

问题描述 投票:-1回答:3

我正在研究PUT请求,以便能够使用Flask和Python修改我的JSON文件中的数据。问题是它不会保存所做的更改。

以下是我的代码:

@app.route('/updated', methods = ['POST', 'PUT' 'GET'])
def update():
    try:
        title = request.form['title']
        print title

        if request.method == 'POST':
            with open("articles.json", 'r+') as json_File:
                articles = json.load(json_File)
                for article in articles['article']:
                    if title == article['title']:
                        print article['title']
                        print article['author']
                        print article['article_id']
                        article['title'] = title
                        article['author'] = request.form['author']
                        article['text'] = request.form['text']
                        article['article_id'] = request.form['article_id']
                        print article
                        save_article = json.dumps(article, json_File)
                    else:
                        print "article could not be added"
                #json_File.close()
                return render_template('updated.html', save_article = save_article, article = article)

    except:
        print "This didn't work."
        return render_template('errorHandler.html'), 404
python json flask put
3个回答
0
投票

我想你应该改变这一部分:

if request.method == 'POST' or request.method == 'PUT':

为了更好的做法,我认为你应该这样做:

if request.method == 'POST' or request.method == 'PUT':
     # do your code here, which edit into your database
if request.method == 'GET':
     # do GET code here, which return data from your database

或者将您的https方法分成不同的功能


0
投票

例子来自(http://blog.luisrei.com/articles/flaskrest.html

@app.route('/echo', methods = ['GET', 'POST', 'PATCH', 'PUT', 'DELETE'])
def api_echo():
    if request.method == 'GET':
        return "ECHO: GET\n"

    elif request.method == 'POST':
        return "ECHO: POST\n"

    elif request.method == 'PATCH':
        return "ECHO: PACTH\n"

    elif request.method == 'PUT':
        return "ECHO: PUT\n"

    elif request.method == 'DELETE':
        return "ECHO: DELETE"

可能最好在装饰器中为每个方法设置if / elif / else,以防止奇怪的bug和边缘情况。


0
投票

首先,json.dumps()“转储”为字符串,而不是文件。所以

save_article = json.dumps(article, json_File)

将返回一个字符串,然后绑定到save_article变量,但该文件实际上没有被修改。您可能打算使用json.dump(article, json_File),它接受一个文件作为第二个参数。

注意:在Python 2中默认忽略file参数,我假设您正在使用它,因为它将在Python 3中显示为错误。


可能还有其他问题。一个是文章将被附加到文件中,但似乎代码的意图是更新现有文章。更新文本文件通常是不切实际的。更好的方法是迭代文章,更新与标题匹配的文章。然后在最后重写整个文件一次。这是一个例子:

        with open("articles.json", 'r') as json_File:
            articles = json.load(json_File)

        # update any matching articles
        for article in articles['article']:
            if title == article['title']:
                article['author'] = request.form['author']
                article['text'] = request.form['text']
                article['article_id'] = request.form['article_id']

        # rewrite the whole JSON file with updated dictionary
        with open("articles.json", 'w') as json_File:
            json.dump(articles, json_File)

在更新文章数据时,您可能需要考虑使用简单的数据库来管理它。你可以看看Flask SQLAlchemy

© www.soinside.com 2019 - 2024. All rights reserved.