|
|||
2024 年 7 月 11 日 改訂 | |||
|
|||
|
|||
|
|||
testCGI.tar.gz こちらを参照しました. |
|||
|
|||
http://fish-evol.org/uploadingFile/ | |||
|
|||
2019 年 7 月 |
|||
|
|||
/var/www/html/executeCount/index.html | |||
<!DOCTYPE html> <body hash(0x100897000)> <tr><td><table width="300" border="0" valign="top" align="left"> </html> |
|||
/var/www/html/executeCount/executeCount.js | |||
$(function() { //var consoleInfo = console.info($('#my_form').get(0).submit); var fd = new FormData($('#my_form').get(0)); $(document) //console.log("test1") $.ajax({ |
|||
/var/www/cgi-bin/executeCount.py |
|||
#!/usr/bin/python3.6 import time f = open("../data/counters/executeCount.dat") count = int(lines[0]) count += 1 out = open("../data/counters/executeCount.dat", "w") time.sleep(1) print("Content-Type: text/html\n\n") |
|||
/var/www/cgi-bin/data/counters/executeCount.dat | |||
12 | |||
エラー対策 Permission denied などが出て、保存ができない場合。 /var/www/cgi-bin はファイルを書込みする場所ではないのでプログラムからのみ読み書きするファイルの置き場所は別のディレクトリにする必要がある。
と apacheユーザーでのみ書き込み可能なディレクトリを作成する。
|
|||
|
|||
Ajax を使って Python と Javascript でやり取りを行う方法
「Javascript 本格入門 8-1 Ajaxとは」 サーバーサイドを Python CGI で
30分で理解!JavaScriptでAjaxプログラミングを理解するコツ!
Python と JavaScript ではじめるデータビジュアリゼーション
jQuery, Ajax で複数選択チェックボックスを POST jQuery 最高の教科書 【jQuery】Ajaxのローディング時に、くるくる(スピナー)を表示
JavaScript で Python と通信を行う方法:ajax 経由
|
|||
|