loadText

loadText(url, headers, request)Promise.<String>|undefined

异步加载给定的 URL 文本。 加载完成后会返回一个解析为字符串的 promise,如果 URL 加载失败则会拒绝。 数据是使用 XMLHttpRequest 加载的,这意味着要向其他来源发出请求,服务器必须启用跨来源资源共享(CORS)headers。
Name Type Description
url String 要请求的 URL。
headers Object optional HTTP 要与请求一起发送的headers。
request Request optional 请求对象。仅供内部使用。
Returns:
加载时将解析请求数据的Promise。如果 request.throttle 为 true 且请求的优先级不够高,则返回未定义。
Example:
// load text from a URL, setting a custom header
SuperMap3D.loadText('http://someUrl.com/someJson.txt', {
  'X-Custom-Header' : 'some value'
}).then(function(text) {
    // Do something with the text
}).otherwise(function(error) {
    // an error occurred
});
See: