标签: python perl flask cgi
典型的Flask脚本如下:
from flask import Flask, render_template app=Flask(__name__) @app.route('/') def home(): return render_template('index.html')
我的问题不是'index.html',而是如何在perl中使用CGI脚本'SRL.pl'。