我一个 html档,运行在 host,他的内容只有 <h1>{{ result }}</h1>,是要给
客户端看得显示页面。
我web主程式,里面一个function是执行某个指令:
@app.route("/test",methods=['GET','POST'])
def function test():
import subprocess
cmd=subprocess.Popen(['ifconfig','eth0'],stdout=subprocess.PIPE,stderr=subprocess.PIPE)
out,err=cmd.communicate()
templateData={
'result' : out
}
return render_template('xxx.html',**templateData)
他在客户端显示的讯息都是连在一起没有分段,如果我在web主程式打print(out)
他在这边就像linux显示那样整齐,有什么比较聪明的办法可以让他像显示在 linux
那样地显示在客户端? 有python提供的API吗? 谢谢。