@@ -20,7 +20,9 @@ pub mod raw {
20
20
impl XmlHttpRequest {
21
21
/// Initialize an XmlHttpRequest.
22
22
pub fn new ( ) -> Self {
23
- let xhr = web_sys:: XmlHttpRequest :: new ( ) . expect_throw ( "XMLHttpRequest constructor" ) ;
23
+ // we assume this is safe because all browsers that support webassembly
24
+ // implement XmlHttpRequest.
25
+ let xhr = web_sys:: XmlHttpRequest :: new ( ) . unwrap_throw ( ) ;
24
26
XmlHttpRequest { xhr }
25
27
}
26
28
@@ -50,9 +52,19 @@ pub mod raw {
50
52
self . xhr . abort ( ) . expect_throw ( "aborting XHR" )
51
53
}
52
54
55
+ /// Send without a body.
56
+ ///
57
+ /// Should probably be renamed.
58
+ pub fn send_no_body ( & self ) {
59
+ self . xhr
60
+ . send ( )
61
+ . expect_throw ( "Error sending request. Did you forget to call `open`?" )
62
+ }
63
+
53
64
/// Send!
54
65
pub fn send < B : XhrBody > ( & self , body : B ) {
55
- body. send ( & self . xhr ) . expect_throw ( "sending XHR" )
66
+ body. send ( & self . xhr )
67
+ . expect_throw ( "Error sending request. Did you forget to call `open`?" )
56
68
}
57
69
58
70
/// Set a header on the request.
@@ -88,7 +100,20 @@ pub mod raw {
88
100
. collect ( )
89
101
}
90
102
103
+ /// The error callback can fire in cases such as CORS errors.
104
+ pub fn set_onerror < C > ( & self , callback : C )
105
+ where
106
+ C : FnMut ( web_sys:: ProgressEvent ) + ' static ,
107
+ {
108
+ let closure = Closure :: wrap ( Box :: new ( callback) as Box < FnMut ( web_sys:: ProgressEvent ) > ) ;
109
+ self . xhr . set_onerror ( Some ( closure. as_ref ( ) . unchecked_ref ( ) ) ) ;
110
+ closure. forget ( ) ;
111
+ }
112
+
91
113
/// see mdn
114
+ ///
115
+ /// This takes an FnMut because the callback can be called more than once (if
116
+ /// `send` is called more than once)
92
117
pub fn set_onload < C > ( & self , callback : C )
93
118
where
94
119
C : FnMut ( web_sys:: ProgressEvent ) + ' static ,
@@ -152,7 +177,7 @@ pub mod raw {
152
177
/// https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/readyState
153
178
pub fn ready_state ( & self ) -> ReadyState {
154
179
ReadyState :: from_u16 ( self . xhr . ready_state ( ) )
155
- . expect_throw ( "XMLHttpRequest ReadyState must be 0 < n < 4" )
180
+ . expect_throw ( "XMLHttpRequest ReadyState must be 0 ≤ n ≤ 4" )
156
181
}
157
182
}
158
183
0 commit comments