使用JSTL设置html属性值

时间:2018-05-09 03:08:48

标签: jsp jstl el

在我的JSP页面中,我有以下复选框。

<input type="checkbox" name="checkbox1" <%=checkBoxStatus> ></input>

如何替换&lt;%= checkBoxStatus&gt;在上面的代码中使用JSTL?

1 个答案:

答案 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);

  }