我有一個表格,我通過html進行輸入經度和緯度,然後提交這些信息。現在我想要我在html表單中輸入的經度和緯度,用於調用python腳本。表單中的每個元素是叫python腳本的命令行參數:從html傳遞信息到python腳本
./python.py
如何調用適當的參數的python腳本python.py如上規定根據我在網站上提交的表格提交的緯度和經度信息。這是一段html代碼。
<center>Please Enter a Longitude and Latitude of the point where you want to look at</center>
<center>(Longitudes West and Latitudes South should be entered as negative numbers i.e 170W is -170).</center>
<br></br>
<form>
<center>
Longitude: <br>
<input type="text" name="Longitude" />
<br>
Latitude: <br>
<input type="text" name="Latitude" />
<br>
<input type="submit" name="submit" value="Submit" />
</center>
</form>
</body>
</html>
我應該在這裏添加什麼,以便在點擊提交按鈕時有html文件調用./python.py?
你需要編碼url – Hackaholic 2014-11-23 23:36:20
這是什麼意思? – jms1980 2014-11-23 23:59:51
你能給網站鏈接嗎? – Hackaholic 2014-11-24 00:01:18