我正在使用Python和CGI進行維護。該網站目前運行在Python上,但出於某種奇怪的原因,我必須將Python變量分配給 到同一個Python文件中的JavaScript變量。我嘗試了很多東西,但他們都沒有工作,我不知道是否有可能這樣做。任何幫助將不勝感激。我簡化了代碼,以顯示從Python到JavaScript的變量交換。我的Python版本是3.5.2,並且該站點在IIS服務器上運行。再次感謝您的幫助和時間。將Python變量分配給JavaScript變量
import cgi
print('')
temp = 78 #These is the Python variable I need to assign to the Javascript variable.
print('<html>')
print('<script type="text/javascript">')
print('var x = {{temp}};') #Here's how I'm trying to assign the python variable.
print('document.write(x);')
print('document.write("HELLO PYTHON VARIABLE!!");')
print('</script>')
print('</html>')
是它只是一個數字,或不變量保持用戶輸入? (因爲那時涉及安全) – RemcoGerlich