最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Inline condition - Stack Overflow

programmeradmin0浏览0评论
  - if (typeof(person) == 'undefined')
    input(type="text", name="person[Name]")
  - else
    input(type="text", name="person[Name]", value="#{person.Name}")

Is there any way to write this inline? I have an option select and I don't want to do a conditional statement for 30+ values to select the right option.

  - if (typeof(person) == 'undefined')
    input(type="text", name="person[Name]")
  - else
    input(type="text", name="person[Name]", value="#{person.Name}")

Is there any way to write this inline? I have an option select and I don't want to do a conditional statement for 30+ values to select the right option.

Share Improve this question edited Nov 2, 2018 at 23:51 A-Sharabiani 19.4k22 gold badges128 silver badges138 bronze badges asked Dec 19, 2011 at 16:10 PatrickPatrick 8,09312 gold badges55 silver badges91 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 6

You could use mixins

mixin safeInput(person, property)
  - if (typeof(person) == 'undefined')
    input(type="text", name="person[#{property}]")
  - else
    input(type="text", name="person[#{property}]", value="#{person[property]}")

Then

mixin safeInput(person, 'Name')
mixin safeInput(person, 'Email')
...

conditional statement should do

input(type='text', name='person[Name]', value= (person?(person.name?person.name:''):''))

however, by design we can always pass a person? this way there is no parison required. Code would be something like

input(type='text', name='person[Name]', value= person.name)

You can short circuit as follows:

input(type="text", name="person[Name]", value="#{person && person.Name}")

When the value is undefined or null, the attribute will not be shown. This should work:

input(type='text', name='person[Name]', value= person && typeof(person))
发布评论

评论列表(0)

  1. 暂无评论