简体   繁体   中英

How to select a single field in MongoDB using Pymongo?

I'm trying to find a record within MongoDB, and filter _id from the result.

Here is my code:

#app.py
@app.route('/login', methods = ['GET', 'POST'])
def login():
    if request.method == "POST":
        password = request.form.get('password')
        email = request.form.get('email')
        db = get_db()
        data = db.author.find_one({'email' : email, 'password' : password})
        print(data)
        return 'data'
    else:
        return render_template('login.html')

Output:

{'password': '123123', 'name': '<my_name>', 'email': '<my_email>', '_id': ObjectId('<an_object_id_string>')}

How do I filter the _id field from the output?

您需要使用投影指定要返回的字段。

data = db.author.find_one({'email' : email, 'password' : password}, {'_id': 1})

You need to pass the second object in your query. First parameter is a select clause, whereas the second one is a projection.

See MongoDB docs for details: https://docs.mongodb.org/manual/tutorial/project-fields-from-query-results/

it is the best way for avoiding id,

data = db.author.find_one({'email' : email, 'password' : password},{"password":1, "email":1, "name":1,"_id": False})

now you got ANSWER "{'password': '123123', 'name': 'prakash', 'email': 'prakashprabhu48@gmail.com'}"(without id)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM