0

我正在尝试替换我在 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);
    }
  }
);
4

1 回答 1

1

我认为你混淆了你的目标。q是输入并且会有一个值。name是一个表格单元格,因此只有一个innerHTML. 相反,它应该是:

searchTable() {
  console.log(this.qTarget.value);
}

但我建议您更进一步,将事件传递给您的 searchTable 函数。然后,您不需要输入数据目标。

searchTable(e) {
  console.log(e.srcElement.value);
}
于 2021-01-14T14:22:17.267 回答