You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I came across a problem with the JQPost this morning whereby it still appends
arguments onto the url. My solution was the following although I don't claim to
be an expert at this!
JQPost>>#arguments
| arguments |
arguments := OrderedCollection with: self url.
self data collection isEmpty ifFalse: [ arguments add: self data ].
self options
at: 'complete'
ifPresent: [ :value | arguments add: value ].
self options
at: 'dataType'
ifPresent: [ :value | arguments add: value ].
^ arguments
Original issue reported on code.google.com by renggli on 25 Apr 2011 at 9:15
The text was updated successfully, but these errors were encountered:
Name: JQuery-Core-lr.116
Author: lr
Time: 25 April 2011, 2:34:15 pm
UUID: b5489524-87bc-469c-b303-ffd1df8b8b5b
Ancestors: JQuery-Core-lr.115
- fix get, get json, get script, and post ajax requests; they work mostly broken
- use #onSuccess: on these request types, not #onComplete: (which has changed
in the jQuery code)
Name: JQuery-Tests-Core-lr.128
Author: lr
Time: 25 April 2011, 2:31:03 pm
UUID: 0516e42f-f445-4226-97ca-3a34557d3df2
Ancestors: JQuery-Tests-Core-pmm.127
- add tests for get, getscript and post ajax requests (they were broken)
Original comment by renggli on 25 Apr 2011 at 12:48
Original issue reported on code.google.com by
renggli
on 25 Apr 2011 at 9:15The text was updated successfully, but these errors were encountered: