0
我想使用哪些值處於Ramda
函數內的「狀態」。這將起到類似於「AND」過濾器的作用。所以它可能會收到1個值或幾個值。使用Ramda傳遞陣列與React
如何將數據從組件傳遞到此ramda函數?
它如何循環'ramda'來添加它們在狀態中設置的值?
我把它添加到codepen也:https://codesandbox.io/s/3OGK2pP9
const AndFilter = pipe(
prop('movies'),
filter(
both(
// Example data to show how it should arrive from the react component.
where({ genres: pipe(pluck('name'), contains('foo')) }),
where({ genres: pipe(pluck('name'), contains('bar')) }),
where({ genres: pipe(pluck('name'), contains('baz')) }),
),
),
);
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
movies: dataTest,
selectedFilters: { foo, bar, baz },
};
}
AndFilter =() => {
this.setState({ movies: AndFilter(x) });
};
render() {
return (
<div>
<button onClick={this.AndFilter}>test</button>
{this.state.movies.map(movies => (
<li key={movies.id}> {movies.name} </li>
))}
</div>
);
}
}
你能告訴我一個更全面的例子嗎?可能在我的筆上?我試圖實現它沒有成功。 https://codesandbox.io/s/3OGK2pP9 – Ycon
好一會兒.... –
我還沒有跟着。你的例子是針對不同結構化的數據,而'ramda'過濾器也不同。你可以在這裏https://codesandbox.io/s/J6WW5BD9l嗎?我沒有看到變量被傳遞給'AndFilter'常量。 – Ycon