React JSX: selecting quot;selectedquot; on selected lt;selectgt; option(React JSX:选择“已选择;在选定的lt;选择gt;选项)
问题描述
In a React component for a <select> menu, I need to set the selected attribute on the option that reflects the application state.
In render(), the optionState is passed from the state owner to the SortMenu component. The option values are passed in as props from JSON.
render: function() {
  var options = [],
      optionState = this.props.optionState;
  this.props.options.forEach(function(option) {
    var selected = (optionState === option.value) ? ' selected' : '';
    options.push(
      <option value={option.value}{selected}>{option.label}</option>
    );
  });
// pass {options} to the select menu jsx
However that triggers a syntax error on JSX compilation.
Doing this gets rid of the syntax error but obviously doesn't solve the problem:
var selected = (optionState === option.value) ? 'selected' : 'false';
<option value={option.value} selected={selected}>{option.label}</option>
I also tried this:
var selected = (optionState === option.value) ? true : false;
<option value={option.value} {selected ? 'selected' : ''}>{option.label}</option>
Is there a recommended way of solving this?
React makes this even easier for you. Instead of defining selected on each option, you can (and should) simply write value={optionsState} on the select tag itself:
<select value={optionsState}>
  <option value="A">Apple</option>
  <option value="B">Banana</option>
  <option value="C">Cranberry</option>
</select>
For more info, see the React select tag doc.
Also, React automatically understands booleans for this purpose, so you can simply write (note: not recommended)
<option value={option.value} selected={optionsState == option.value}>{option.label}</option>
and it will output 'selected' appropriately.
这篇关于React JSX:选择“已选择";在选定的<选择>选项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:React JSX:选择“已选择";在选定的<选择>选项
				
        
 
            
        - 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
 - 在不使用循环的情况下查找数字数组中的一项 2022-01-01
 - 从原点悬停时触发 translateY() 2022-01-01
 - 如何显示带有换行符的文本标签? 2022-01-01
 - 如何向 ipc 渲染器发送添加回调 2022-01-01
 - 如何调试 CSS/Javascript 悬停问题 2022-01-01
 - 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
 - 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
 - 为什么我的页面无法在 Github 上加载? 2022-01-01
 - 使用 iframe URL 的 jQuery UI 对话框 2022-01-01
 
						
						
						
						
						
				
				
				
				