我在Jade中有以下代码,我正在尝试将其转换为EJS,但对Jade(或者ejs)非常不熟悉。我已经开始但不太确定我是否正确地做了。另外,为什么我不能在ejs中使用普通的javascript而不是使用非常令人困惑的语法?谢谢! 将玉转换为ejs。
extends ../layouts/default/layout
block content
div.row
div.col-md-12
h2= title
hr
if info != undefined
div.form-group
div.col-lg-12
div.alert.alert-dismissible.alert-info
button.close(type='button', data-dismiss='alert') ×
strong Excelente!
p= info
table.table.table-striped.table-hover#tblTasks
thead
tr
th #
th Titulo
th Descripcion
th Prioridad
th Fecha
th Estado
th Acciones
tbody
each task in tasks
tr(id='row#{task.id}')
td= task.id
td= task.title
td= task.description
td= task.priority
td= task.date
td= task.status
td
a(href='tasks/update/#{task.id}', class='btn btn-xs btn-success', style='margin-right: 3px;') Editar
button(onclick='deleteTask(#{task.id});', class='btn btn-xs btn-danger') Eliminar
script(src='/javascripts/tasks.js')