Я пытаюсь получить значение express handlebar {{this.shortName}}, которое было в помощнике ручки «each». Я пытаюсь получить this.shortName значения, а затем передать его атрибуту модального окна, так как оно находится в формате таблицы. Понятия не имею, как это сделать в jquery.
Это мой код в HTML:
{{#each college}}
<tr>
<th scope="row"></th>
<td>{{{@index}}{{this.shortName}}</td>
<td>{{@index}} {{this.longName}}</td>
<td>
<div class="dropdown">
<button class="btn btn-primary btn-sm text-white dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Action
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" class="text-center" data-toggle="modal" data-target="#modaledit">Update Info</a>
<a class="dropdown-item" class="text-center" data-toggle="modal" data-target="#modaldelete">Delete College</a>
<a class="dropdown-item" class="text-center" href="/colleges/{{this.shortName}}">Go to College</a>
</div>
</div>
</td>
</tr>
{{/each}}
Надеюсь, я правильно отвечу. Спасибо :)