I hereby claim:
- I am simars on github.
- I am simarpaulsingh (https://keybase.io/simarpaulsingh) on keybase.
- I have a public key ASBh_yWLQpnKEOcdHpsqZov8LuIumwuCSNp0kRKldtYVCwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <ul> | |
| <li *ngFor="let item of items; let i = index"> | |
| <strong [style.color]="item.color">{{item.id}} | {{item.name}}</strong> | |
| <input size="100%" [value]="values[i]" (input)="values[i] = $event.target.value" > | |
| </li> | |
| </ul> |
| <ul> | |
| <li *ngFor="let itemTrackBy of items; trackBy: trackByFn; let i = index"> | |
| <strong [style.color]="itemTrackBy.color" >{{itemTrackBy.id}} | {{itemTrackBy.name}}</strong> | |
| <input size="100%" [value]="values[i]" (input)="values[i] = $event.target.value"> | |
| </li> | |
| </ul> |
| @Controller | |
| public class Controller304LastModifiedCache { | |
| @ResponseBody | |
| @RequestMapping(value = "/test2") | |
| public String handle2 (WebRequest swr) { | |
| if ( swr.checkNotModified( getResourceLastModified(swr), getETag(swr) ) ) { | |
| //it will return 304 with empty body | |
| return notModified(swr); |