使用JSONP请求资源。
Name | Type | Description | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
url |
String | 要请求的URL。 | ||||||||||||||||
options |
Object |
optional
具有以下属性的对象:
|
||||||||||||||||
request |
Request | optional 请求对象。仅供内部使用。 |
Returns:
加载时将解析请求数据的Promise。如果 request.throttle 为 true 且请求的优先级不够高,则返回未定义。
Example:
// load a data asynchronously
SuperMap3D.loadJsonp('some/webservice').then(function(data) {
// use the loaded data
}).otherwise(function(error) {
// an error occurred
});