getAllOrganization: function() {
return new Promise(function(resolve, reject) {
request.fetch(latas.API_ENDPOINT.organizationApi).then(function(result) {
if(result.status) {
resolve(result.data); console.log('hi success');
} else { console.log('rejected');
reject(result.message);
}
}, function(error) { console.log('errorr');
reject(latas.MESSAGES.SOMETHING_WENT_WRONG);
});
});
}
以上是我的代码 [Promise] 在 OPTIONS 请求调用后被拒绝。我只想要 GET 请求,我想绕过 OPTIONS 请求。