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プロジェクトで翡翠を使用しています
nodejs
フィルタの定義方法が見つかりません
選択ボックスに表示したいカテゴリ、小文字のオプション値、大文字のオプション テキストがあります。
select each cat in categories option(value="lowercase(#{cat})") uppercase(#{cat})
何か案が ?
ネイティブの JavaScript 関数を使用しないのはなぜですか?
select each cat in categories option(value=cat.toLowerCase())= cat.toUpperCase()
以下も使用できます。
select each cat in categories option(value=#{cat.toLowerCase()}) #{cat.toUpperCase()}