Flask Python Webに自分のIPアドレスを表示する際に問題があります。アナロジーは、PHPプログラミングの場合は、単に私のIPアドレスをFlaskに表示するには?
echo $_SERVER['SERVER_ADDR'];
を使用する非常に簡単ですが、私は、PythonのWebフラスコにIPアドレスを起動する方法がわかりません。私が表示したいのに対し、192.168.43.46:4000上で実行されている
用途:
:フラスコ<iframe id="form-iframe" src="{{ request.script_root }}/vshell/index.php?type=services&clearcache=true" style="margin:0; width:100%; height:640px; border:none; overflow:hidden;" onload="AdjustIframeHeightOnLoad()"></iframe>
とで使用
<iframe id="form-iframe" src="http://192.168.43.46/vshell/index.php?type=services&clearcache=true" style="margin:0; width:100%; height:640px; border:none; overflow:hidden;" onload="AdjustIframeHeightOnLoad()"></iframe>
スクリプトは、クライアント側のブラウザに登場しました
表示方法:
src="http://192.168.43.46/vshell/index.php?type=services&clearcache=true"
フラスコ?
あなたは '使用する場合、ブラウザは何を見ん{{request.script_root}} '? –
'request.remote_addr' – furas
ブラウザ参照: ' {{request.script_root}} '= 'http://192.168.43.46:4000' –