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

javascript - How to use a ternary operator in a template literal with multiple variables - Stack Overflow

programmeradmin1浏览0评论

I have a JSON file that I'd like to get values from and display. I tried to use a ternary operator but I couldn't seem to get the output I wanted since I have multiple variables. Here's what I tried:

//If there's a word, display its character / reading. Otherwise, just display the reading
return `${json.data[0].word} ? ${json.data[0].word (${json.data[0].reading}) : ${json.data[0].reading}`


This just outputs the actual string but with undefined if json.data[0].word is undefined. I'd like to only display the reading in this case.

I have a JSON file that I'd like to get values from and display. I tried to use a ternary operator but I couldn't seem to get the output I wanted since I have multiple variables. Here's what I tried:

//If there's a word, display its character / reading. Otherwise, just display the reading
return `${json.data[0].word} ? ${json.data[0].word (${json.data[0].reading}) : ${json.data[0].reading}`


This just outputs the actual string but with undefined if json.data[0].word is undefined. I'd like to only display the reading in this case.

Share Improve this question asked Jan 26, 2019 at 2:37 EdwinEdwin 4001 gold badge5 silver badges19 bronze badges 2
  • 1 Could you add an example of the json data? – Shidersz Commented Jan 26, 2019 at 2:51
  • 2 Template literals are Strings. This looks like a pointless use of them. Just use the Object code. json.data[0].word ? json.data[0].word(json.data[0].reading) : json.data[0].reading;. – StackSlave Commented Jan 26, 2019 at 3:00
Add a ment  | 

2 Answers 2

Reset to default 6

Placeholders don't work recursively in String templates. Write a clearer code.

If you insist in using a pact ternary code:

json.data[0].word
  ? `${json.data[0].word} (${json.data[0].reading})`
  : `${json.data[0].reading}`

Your external placeholder is unnecessary.

There is a much easier way to go about this. First I would create a variable that contained the resulting evaluation, and simply returned a literal of that result.

Then I would split up the nested ternaries into a set of nested if statements that are much easier to understand and modify in the future. Take a look at the code block below, you should be able to structure your code very easily and cleanly. Nested ternaries I believe to be very bad practice, and should be avoided at all times.

let $result;

if (true) {

   if (true) {
      $result = 'output 2';
   } else {
      $result = 'output 3';
}
   $result = 'output 1';
}

return `${result}`;
发布评论

评论列表(0)

  1. 暂无评论