Jade中的多个逻辑OR运算符

时间:2015-06-19 17:29:31

标签: node.js pug logical-operators

很简单: 如果我的文件的mimetype是图像

,我想制作一个case comment.fileType when "image/png" || "image/gif" || "image/jpeg" img(src="/files/#{comment.fileLink}") - 标签
char a[]="ABCD";
*a='X';

不起作用

适用于png,但不适用于jpeg或gif。 有诀窍吗?

1 个答案:

答案 0 :(得分:0)

我认为这会奏效:

case comment.fileType
  when "image/png"
  when "image/gif"
  when "image/jpeg"
    img(src="/files/#{comment.fileLink}")