我是前端开发的新手,正在从事一个全栈项目。我需要运行一个使用用户提供的一些信息编写的python脚本。我想将脚本的结果(当前仅以stdout打印到终端)发布在同一页面上。我该怎么办?以下是我目前拥有的HTML:
<form>
<div class="form-group"> <!-- Client Device IP -->
<label for="client_device_ip" class="control-label">Client Device IP</label>
<input type="text" class="form-control" id="client_device_ip" name="client_device_ip" placeholder="0.0.0.0">
</div>
<div class="form-group"> <!-- Client Device Username -->
<label for="client_username" class="control-label">Client Device Username</label>
<input type="text" class="form-control" id="client_username" name="client_username" placeholder="root">
</div>
<div class="form-group"> <!-- client_device_pw -->
<label for="client_device_pw" class="control-label">Client Device Password</label>
<input type="text" class="form-control" id="client_device_pw" name="client_device_pw" placeholder="*******">
</div>
... 3 more forms, removed for length
<div class="form-group"> <!-- Start Button -->
<button type="submit" class="btn btn-primary">Start Test</button>
</div>
从终端执行时,我的python脚本运行得很好,但当前所需的信息已进行硬编码。我需要对HTML和python脚本进行哪些更改,才能将该表单信息提取到脚本的变量中?