Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NodeJS のテンプレートに Jade を使用しています。
チェックボックスの値を送信したい。
input#isNewProduct.checkbox(type='checkbox', name="isNewProduct", checked=product.isNewProduct)
ただし、常に true をフォームで送信します。
どこが間違っていますか?
これを試して:
checked=(product.isNewProduct || undefined)