jqueryが適応されない
Herokuにアップロードしたflask使ってhtml、js、cssファイルを公開しました。
render_template('form.html')でリンク先にcssが反映されたhtmlは表示できたのですが、
jqueryが反映されません。
ディレクトリの構造はこんな感じです。
root
|-templates
| |-form.html
|-static
| |-form.js
| |-form.css
|-main.py
|-Procfile
|-README.md
|-requirements.txt
form.htmlのheadタグないはこんな感じです。
ちゃんとurl_forを使用したのですが、なぜかjsの方は反映されません。
html
1<head> 2 <meta charset="utf-8"> 3 <meta name="viewport" content="width=device-width,initial-scale=1"> 4 <title>アンケートフォーム</title> 5 <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css"> 6 <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.js"></script> 7 <script type="text/javascript" src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script> 8 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/i18n/jquery.ui.datepicker-ja.min.js"></script> 9 <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='form.css')}}"> 10 <script type=text/javascript src="{{ url_for('static', filename='form.js') }}"></script> 11 </head>
requirements.txtやruntimeはpythonを走らせるのに必要だったものしか入れてません。
何か気づきがあれば教えてください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。