我正在使用react_on_rails gem 与 rails 一起工作。我正在尝试将react-select用于 React 选择控件。但是当我导入和使用时:
import {Async} from 'react-select';
class TransferProduct extends React.Component {
constructor(props) {
super(props);
}
handleChange = (selectedOption) => {
console.log(`Selected: ${selectedOption.label}`);
}
render() {
const getOptions = (input, callback) => {
setTimeout(() => {
callback(null, {
options: [
{value: 'one', label: 'One'},
{value: 'two', label: 'Two'}
],
complete: true
});
}, 500);
};
return (
<div className="TransferProduct">
<Async
className="ProductList"
name="form-field-name"
loadOptions={getOptions}
/>
</div>
);
}
}
export default TransferProduct;
但看起来css不适用。在 chrome 控制台上查看时,我没有看到任何 css 应用。
我认为 react_on_rails 不适用于库的反应组件中的某些资产。请告诉我怎么做。