How to generate dynamic urls in a bulb?

I have several database entries that I want to create like this:

mysite.com/post/todays-post-will-be-about

todays-post-will-be-about will be retrieved from the database.

Is there any way that I can remove this in a flask?

+4
source share
4 answers

You can put variable names in your views.py functions. For example:

# you can also use a particular data type such as int,str
# @app.route('post/<int:id>', methods=['GET', 'POST'])
@app.route('post/<variable>', methods=['GET'])
def daily_post(variable):
    #do your code here
    return render_template("template.html",para1=meter1, para2=meter2)

To get information about your database for display on your site, you will want to pass parameters to the template. So, in your template you will refer to such parameters as:

<td>Post Author: {{ para1.author }}</td>
<td>Post Body: {{ para1.body }}</td>
<td>Date Posted: [{{ para2 }}] times</td>

, mysite.com/post/anything_here, "anything_here" . , 404 , - :

@app.errorhandler(404)
def not_found_error(error):
    return render_template('404.html', pic=pic), 404
+6

@app.route, :

@app.route('/post/<post_title>')
def show_post(post_title):
    #use post title to fetch the record from db

"": http://flask.pocoo.org/docs/0.10/quickstart/#routing

+6

, :

@app.route("post/<identifier>")
def post(identifier):  # parameter name must match dynamic route parameter name
    the_post = get_from_database_by(identifier)
    response = make_response_from_entity(the_post)
    return response

.

+2

SQLAlchemy http://flask-sqlalchemy.pocoo.org/

app.py

from flask import Flask, render_template

try:
    from .alchemy import Post, db

except:
    from alchemy import Post, db

app = Flask(__name__)

@app.route('/post/<url>')
def post(url):
    url = Post.query.filter_by(url=url).first_or_404()
    id = url.id
    author = url.author 
    title = url.title
    body = url.body
    date = url.date
    return render_template('post.html', title=title, id=id, author=author, body=body, date=date)

if __name__ == '__main__':
    app.run(debug=True)

alchemy.py

from flask import Flask
from flask.ext.sqlalchemy import SQLAlchemy
import datetime

app = Flask(__name__)
SQLALCHEMY_TRACK_MODIFICATIONS = True
app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql+pymysql://root:pasword@localhost/base'
db = SQLAlchemy(app)


class Post(db.Model):
    __tablename__ = "table"
    id = db.Column(db.Integer, primary_key=True)
    title = db.Column(db.String(200))
    url = db.Column(db.String(220))
    author= db.Column(db.String(50))
    body = db.Column(db.String(50000))
    date  = db.Column(db.DateTime)

    def __init__(self, title, url, author, body):
        self.title = title
        self.url = url 
        self.author= author
        self.body = body 
        self.date = datetime.datetime.utcnow()

    def __repr__(self):
        return '<Post %r>' % self.url
0

Source: https://habr.com/ru/post/1626697/


All Articles