放置请求python flas

2024-05-09 06:39:23 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在处理一个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

Tags: formidjsonifputtitlerequestsave
3条回答

首先,^{}“转储”到字符串,而不是文件。所以

save_article = json.dumps(article, json_File)

将返回一个字符串,该字符串随后被绑定到save_article变量,但文件实际上没有被修改。您可能打算使用^{}来接受文件作为第二个参数。

注意:在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

来自(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"

对于decorator中的每个方法,最好有一个if/elif/else,以防止出现奇怪的bug和边缘情况。

我认为你应该改变这部分:

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方法分成不同的函数

相关问题 更多 >

    热门问题