当我按下带有模板的按钮时,我正在尝试从input_tag发送数据。
use Mojolicious::Lite;
get '/' => 'index';
app->start;
__DATA__
@@ index.html.ep
<html lang="es">
<head>
<meta charset="utf-8"/>
<title>Graphs</title>
</head>
<body>
<%= tag div => (id => 'inputs') => begin %>
<h1>Grafos dirigidos</h1>
%= input_tag 'nodes', placeholder => '#Nodos', id => 'nodes'
%= input_tag 'edges', placeholder => '#Edges', id => 'edges'
%= input_tag 'start', placeholder => 'Start', id => 'start'
%= submit_button 'Generate', id => 'render', onclick => 'renderGraph()'
%= tag 'br'
%= text_area 'dijkstra', cols => 40, rows => 40, id => 'dijkstra'
<% end %>
当我按下“生成”按钮时,我想将输入中的数据发送到另一个perl脚本。
答案 0 :(得分:0)
添加表格,获取输入值并将其发送,例如作为perl脚本的参数。
import { YAMLError } from '@types/yaml';