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
By default only the basename of the file is included in the form. To include the full path, pass `includePath: true`.
149
+
150
+
```javascript
151
+
form.append('file', stream, {
152
+
filename:'images/logo.png',
153
+
includePath:true
154
+
});
155
+
```
156
+
148
157
For edge cases, like POST request to URL with query string or to pass HTTP auth credentials, object can be passed to `form.submit()` as first parameter:
0 commit comments