我正在为Outlook开发一个邮件加载项,并尝试使用AJAX来使用Web服务,并且它返回"在statusText中拒绝访问" 。
这是代码
$.ajax({
url: "my-webservice",
type: "GET",
success: function (response) {
$('#content-main').html(JSON.stringify(response));
},
error: function () {
$('#content-main').html('Bummer: there was an error!');
},
});
我尝试在独立的HTML页面中使用相同的代码,它就像一个魅力。
谁能告诉我我该怎么做?