#!/usr/bin/python
print "This is python."
print "<script type="text/javascript">
var pass_to_python = new Number(7)
</script>"
the_number = pass_to_python???
我如何在Python中pass_to_python?
#!/usr/bin/python
print "This is python."
print "<script type="text/javascript">
var pass_to_python = new Number(7)
</script>"
the_number = pass_to_python???
我如何在Python中pass_to_python?
您可以將GET
或POST
添加到Python腳本中。如果您需要動態執行此操作,則可以使用AJAX。
這裏是一個很好的鏈接:How are POST and GET variables handled in Python?
HTTP是一個簡單的請求 - 響應協議,它不會讓你暫停中流,等待來自客戶端的詳細信息 - 而且由於你的JS在運行瀏覽器(JS可以在服務器上運行,但如果大多數人不需要代碼在瀏覽器中運行,大多數人都不會嘗試這種方式,所以我假設使用服務器端JS是不可能的) Python在服務器上運行,這就是你的代碼工作所需要的東西(以及修復你在Python代碼中嵌套的斷言)。
您需要加載完整文檔,然後發出新的HTTP請求。
這可能涉及具有JS設置location.href
(making sure you have a fallback for non-JS clients),它可能涉及到使用XMLHttpRequest的異步加載新的數據,它可能採用另一種技術是最好的(這是很難說肯定是你的榜樣簡化太多to tell what X is)
使用pyv8你可以在Python中執行javascript。
import PyV8
class Global(PyV8.JSClass):
pass
with PyV8.JSContext(Global()) as ctxt:
the_number = ctxt.eval("var pass_to_python = new Number(7)")
完美!這個導入模塊和行代碼... – opmeitle 2012-11-03 04:26:02
對不起,我不明白你在說什麼。 – 2012-11-05 00:27:09
我所看到的一種奉承形式,僅此而已。 – opmeitle 2012-11-05 03:26:00