I am new to flask,and I try to use Flask-RESTful to make flask work in restful way. However, I cannot render the HTML, while I try to return render_template
it returns the source code of the HTML,
it is in this way Flask render template not working
I try the answer and it works,however I cannot input parameters like
render_template('index.html',titile="title","passwd"="123456")
It shows me SyntaxError: keyword can't be an expression
. Can any one help me solve this problem?