Jump to content
php.lv forumi
  • 0

Meklēšana 14k arrajā


Wuu

Question

this.state.t.map(function(m, i) {
	this.state.t[i].show = ((JSON.stringify(m).toLowerCase().replace(/\s+/g, '').indexOf(v.target.value.replace(/\s+/g, '').toLowerCase())) > -1) ? true : false;
}.bind(this));

Ir tabulāri dati, mēnesī sanāk ap ~+/-14k. Pie tāda apjoma, prasta meklēšana sāk tormazīt (200ms), nedaudz, tomēr nepatīkami.

Princips ir vienkāršs, katram arraja elementam ir this.state.t.show ar iespēju true or false

Tb, rādīt/nerādīt. Meklēšana notiek arraja elementa apkopojumā.

Meklēšana notiek caur input'u (onChange)

 

Redzu, kā var uzlabot ātrumu, bet varbūt ir iespējams vienkārši uzlabot pārbaudi. Nebūvējot neko pa virsu.

 

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

1. Šis te ir konstants un to vajadzētu aprēķināt tikai vienu reizi nevis katrā iterācijā:

v.target.value.replace(/\s+/g, '').toLowerCase()

2. .map() izmantošana šajā gadījumā ir bezjēdzīga, jo nekas netiek atgriezts. forEach() būtu daudz piemērotāks.

 

3. Ja whitespace novākšana ar .replace() nav īpaši nepieciešama, tad to ņem ārā. Strādās ātrāk.

 

4. Ja meklēšana notiek vairāk kā vienu reizi, tad labāk izveido atsevišķu masīvu ar JSON.stringify(m).toLowerCase().replace(/\s+/g, '') vērtībām.

var search = v.target.value.replace(/\s+/g, '').toLowerCase();
this.state.t.forEach(function(m) {
    m.show = ((JSON.stringify(m).toLowerCase().indexOf(search)) > -1) ? true : false;
});
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...