在我的JSP页面中,我有以下复选框。
<input type="checkbox" name="checkbox1" <%=checkBoxStatus> ></input>
如何替换&lt;%= checkBoxStatus&gt;在上面的代码中使用JSTL?
答案 0 :(得分:0)
async fetchContacts() {
await this.http.get('http://localhost:3000/contacts')
.subscribe(res => {
const newContacts = [].concat(res);
this.contacts = newContacts;
console.log(this.contacts);
});
console.log(this.contacts);
}