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
One more issue related to Google App Engine and upload URLs, perhaps a minor one.
When uploading files with GAE, you need to use an unique, server-side generated URL for each single file. Therefore the URL needs to be changed before each submission. At present there seems to be no "rightful" way to do it. One can modify the "_opts" member object on the fly (that's how i do it) but i assume it's supposed to be private (?). A possible problem with this workaround is that it may break the behavior for iframe-dependent browsers. Although, after a quick look at the code, i don't think it does.
The text was updated successfully, but these errors were encountered:
Just pushed an update to the plugin. Newest version has a new method called setOptions() that allows uploader options to be set or changed. It accepts an object.
So, if you wanted to change the URL of the upload after the user clicks submit, you could do it like this:
One more issue related to Google App Engine and upload URLs, perhaps a minor one.
When uploading files with GAE, you need to use an unique, server-side generated URL for each single file. Therefore the URL needs to be changed before each submission. At present there seems to be no "rightful" way to do it. One can modify the "_opts" member object on the fly (that's how i do it) but i assume it's supposed to be private (?). A possible problem with this workaround is that it may break the behavior for iframe-dependent browsers. Although, after a quick look at the code, i don't think it does.
The text was updated successfully, but these errors were encountered: