yunamatsunaga47o0
@yunamatsunaga47o0

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

Flaskでurl_forを使いたい

解決したいこと

Flaskでwebアプリの開発を行っています。htmlからurl_forでPythonファイル内の関数に引数を渡してジャンプしたいのですが、エラーが出て困っています。

該当するソースコード

<a class="tag2" href="{{url_for('pictapp.search2', key='test')}}">test</a>
@pictapp.route('/searchtag',methods=['post','get'])
def search2(key):
  print(key)

pictappというのはBlueprintオブジェクトの名前です。

発生している問題・エラー

TypeError: search2() missing 1 required positional argument: 'key'

他の部分では同じようなコードで正常に動くのですが、この部分だけうまくいきません。どうしてでしょうか?

0

1Answer

Your answer might help someone💌