답변:
변수에 키워드 인수가 필요합니다.
url_for('add', variable=foo)
url_for
는 Flask의 가변 규칙 경로에 대한 함수 매개 변수로 전달됩니다.
@app.route("/<a>/<b>")
있고 def function(a,b): ...
기능 이 있다면 url_for
키워드 인수를 다음과 같이 사용 하고 지정 해야합니다 .url_for('function', a='somevalue', b='anothervalue')
url_for
in Flask는 템플릿을 포함하여 응용 프로그램 전체에서 URL을 변경해야하는 오버 헤드를 방지하기 위해 URL을 만드는 데 사용됩니다. 없이url_for
앱의 루트 URL에 변경이있는 경우 링크가있는 모든 페이지에서 변경해야합니다.
통사론: url_for('name of the function of the route','parameters (if required)')
다음과 같이 사용할 수 있습니다.
@app.route('/index')
@app.route('/')
def index():
return 'you are in the index page'
이제 색인 페이지에 링크가 있으면 다음을 사용할 수 있습니다.
<a href={{ url_for('index') }}>Index</a>
예를 들어 다음과 같이 많은 일을 할 수 있습니다.
@app.route('/questions/<int:question_id>'): #int has been used as a filter that only integer will be passed in the url otherwise it will give a 404 error
def find_question(question_id):
return ('you asked for question{0}'.format(question_id))
위의 경우 다음을 사용할 수 있습니다.
<a href = {{ url_for('find_question' ,question_id=1) }}>Question 1</a>
이와 같이 간단하게 매개 변수를 전달할 수 있습니다!
{{ url_for('find_question' ,question_id=question.id) }}
아닙니다{{ url_for('find_question' ,question_id={{question.id}}) }}
Flask API 문서를 참조하십시오flask.url_for()
js 또는 css를 템플릿에 연결하는 데 사용되는 다른 샘플 스 니펫은 다음과 같습니다.
<script src="{{ url_for('static', filename='jquery.min.js') }}"></script>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
템플릿 :
함수 이름과 인수를 전달하십시오.
<a href="{{ url_for('get_blog_post',id = blog.id)}}">{{blog.title}}</a>
보기, 기능
@app.route('/blog/post/<string:id>',methods=['GET'])
def get_blog_post(id):
return id
def add(variable)
?