|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
[Help Needed] Javascript Team Finder
Greetings Chief Delphi members!
I'm from from FRC 2729 Storm Robotics and I was wondering if someone could help with an issue that we're having with our Team Number Finder in JavaScript. We can get one page of team numbers (500 numbers) off of any given page using The Blue Alliance api due to the fact that the HTTP request only executes on the last iteration of the for loop. The problem we are having is that when we try to get more than one page, the values become undefined. If someone could look through the code and lend us a hand, that would be wonderful! HTML JavaScript Thanks in advance for any help that is given! Last edited by Mr_Moko : 30-01-2016 at 14:00. |
|
#2
|
|||
|
|||
|
Re: [Help Needed] Javascript Team Finder
Could you post a pastebin link, instead of quoting the code? It's really hard to read when you lose all the formatting.
|
|
#3
|
||||
|
||||
|
Re: [Help Needed] Javascript Team Finder
Quote:
Thanks for the advice! I'm not quite sure why I didn't think of that to begin with. |
|
#4
|
|||
|
|||
|
Re: [Help Needed] Javascript Team Finder
PHP Code:
You appear to be overwriting the html of your div every iteration. Not sure in core javascript but in jquery it would be PHP Code:
![]() |
|
#5
|
||||
|
||||
|
Re: [Help Needed] Javascript Team Finder
Quote:
|
|
#6
|
|||
|
|||
|
Re: [Help Needed] Javascript Team Finder
I think this JS will output what you expect (or something close): https://gist.github.com/4ndr3w/b924b0762416c0ba6885
In Chrome I get a big comma separated list of teams from 1 to something in the 6000's Note that the output has no guarantee of order since the HTTP requests are returning asynchronously. hardcopi is right that it's probably better to append to the div. Your implementation will work since you are appending output to a global string and then writing the whole string back out to the div every loop, but it's not as clean Last edited by Andrew Lobos : 30-01-2016 at 14:41. |
|
#7
|
||||
|
||||
|
Re: [Help Needed] Javascript Team Finder
Quote:
I also agree with hardcopi and I'll possibly see what I can do about doing that, but for now, thanks again for now I believe we'll use your version. Again, thank you! |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|