如何在胸腺中检查复选框?

发布于 2025-01-22 11:07:27 字数 521 浏览 0 评论 0原文

我正在尝试检查一个复选框,如果我在模型中发送的对象是否将特定属性设置为true(在这种情况下为导师)。

<label th:text="Mentor">Mentor </label>:<span th:text="${useraux.mentor}"/>
        <input type="checkbox" th:checked="${useraux.mentor}" th:field="${useraux.mentor}" ng-model="mentor"></input>

我知道这是真的,因为它给了我这个输出。 但是它没有激活复选框,我尝试了多种方法,并且无法对其进行检查。

I am trying to get a checkbox checked if the object I send in the model has a particular attribute set to true (in this case mentor).

<label th:text="Mentor">Mentor </label>:<span th:text="${useraux.mentor}"/>
        <input type="checkbox" th:checked="${useraux.mentor}" th:field="${useraux.mentor}" ng-model="mentor"></input>

I know it is true, because it gives me this output.
enter image description here
But it does not activate the checkbox, I have tried many ways and I am not able to get it checked.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

四叶草在未来唯美盛开 2025-01-29 11:07:27

我相信您想在检查的情况下设置条件,如果它是正确的,则希望检查复选框。只需在您的输入中检查属性的条件,例如:

ts:

export class AppComponent {
  isChecked = 'thisTrue';
}

html:

<input type="checkbox" [checked]="isChecked == 'thisTrue'" /> //this will be checked
<input type="checkbox" [checked]="isChecked == 'no'" /> //this wont be checked

I believe you want to set a condition on checked, if it comes as true you want the checkbox to be checked. Just set a condition on the property checked in your input, like this:

TS:

export class AppComponent {
  isChecked = 'thisTrue';
}

HTML:

<input type="checkbox" [checked]="isChecked == 'thisTrue'" /> //this will be checked
<input type="checkbox" [checked]="isChecked == 'no'" /> //this wont be checked
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文