Skip to content

Instantly share code, notes, and snippets.

@jbin
jbin / solr-search.component.html
Created November 8, 2017 13:23
Angular-Solr Simple Search Method
<form (ngSubmit)="search()" #searchForm="ngForm">
<input type="search" name="term" [(ngModel)]="term">
<button type="submit">Suchen</button>
</form>
<ul>
<li *ngFor="let result of results ">
{{result.name}}
</li>
</ul>
@jbin
jbin / solr-search.component.html
Created November 8, 2017 10:57
Basic html Search Form
<form>
<input type="search" name="Search" id="">
<button type="submit">Suchen</button>
</form>