✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
name="name" の値をテンプレートに渡す(1)に当てはまるものを選びなさい。
フォーム側
<input type="text" name="name" placeholder="太郎">Flask側
name = request.args.get('name', '')
return render_template('echo.html', (1) )