我正在尝试替换我在 django 中制作的应用程序的 jquery,并且我正在尝试使用刺激 js,因为它与 turbolink 一起似乎是一个不错的选择,但是在创建数据表时遇到问题,在搜索引擎中输入文本时它正确运行并返回我写的内容,但问题出在表中,因为浏览器控制台返回一个未定义的值。这是我的html:
<div data-controller="search">
<input type="text" placeholder="Buscar..." maxlength="15" data-action="search#searchTable"data-search-target="q">
<table class="highlight centered">
<thead>
<tr>
<th>Tipe de Tarea</th>
<th>Estado</th>
<th>Fecha de Creacion</th>
<th>Accion</th>
</tr>
</thead>
<tbody>
<tr>
{% for field in object_list %}
<td data-search-target="name">{{ field.name }}</td>
<td>{{ field.status|yesno:"Visible, No visible" }}</td>
<td>{{ field.created_at }}</td>
<td>
<a href="#!">editar</a>
</td>
{% endfor %}
</tr>
</tbody>
</table>
</div>
这是我的控制器:
const application = Stimulus.Application.start();
const { Controller } = Stimulus;
application.register(
'search',
class extends Controller {
static get targets() {
return ['q', 'name'];
}
searchTable() {
console.log(this.nameTarget.value);
}
}
);