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.
次の Cheetah テンプレートが与えられた場合
#filter None {data:[ #for $person in $persons {naam: "#if $person.lastname==None then '' else $person.lastname.replace('"', '\\"')#}, #end for ]} #end filter
「を\\」に置き換えるのは一口です。
この式をより簡単に/より短く書く方法はありますか?
私はチーターを知りませんが、おそらくこれでうまくいきます:
{naam: "#$person.lastname and $person.lastname.replace('"', '\\"')#},