Dynamic Data
See original GitHub issueHI,thank you for making this useful tool,I have some problems
{list.map((item, index) => {
return (
<div key={index}>
slide
</div>
)
}) : null
}
but swiper doesn`t work,I can’t drag it,please tell me how to solve this problem,thank you!
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:9 (3 by maintainers)
Top Results From Across the Web
Dynamic Data | dynamic data brings the power of reactive (rx ...
Dynamic Data is based on the concept of creating and manipulating observable change sets. An observable change set is a collection of changes...
Read more >Static Data vs. Dynamic Data: Why Companies Must ...
As you may have guessed, static data refers to a fixed data set—or, data that remains the same after it's collected. Dynamic data,...
Read more >reactivemarbles/DynamicData: Reactive collections based ...
Dynamic Data is a portable class library which brings the power of Reactive Extensions (Rx) to collections. Rx is extremely powerful but out...
Read more >What is Dynamic Data? - Wise Geek
"Dynamic" denotes change, and when the word is used to describe data — as in "dynamic data" — it refers to electronic information...
Read more >Dynamic Data - Bricks Academy
Use dynamic data to render all sorts of data from your WordPress database with Bricks. For example: Featured image, post title, post date, ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Found my solution after 2 hours.
For dynamic data, I have to use : rebuildOnUpdate: true.
Because I use {this.props.children}. So the divs are read by Swiper but Swiper don’t apply anything on them. It’s like he receive the divs after the initialization…
So rebuildOnUpdate, do the job once.
Set
shouldSwiperUpdate={true}
. Worked for me.