XMLHttpRequest无法加载http:// localhost:1426 / api / Blogs / myarticle预检的响应包含无效的HTTP状态代码403

时间:2017-08-13 10:33:38

标签: angularjs asp.net-web-api

我正在尝试访问web api方法,但它没有被调用并且出现以下错误。

XMLHttpRequest无法加载http://localhost:1426/api/Blogs/Articles/GetArticlesForHome。预检的响应具有无效的HTTP状态代码403

我试图从POST MAN访问相同的api调用并且工作正常。有趣的是,我能够从angularjs代码访问令牌认证方法,但在进入网站后无法调用任何其他方法。

以下是我的角度js代码。

function deleteSubstring(str1, str2){

   while(str1.indexOf(str2) > -1)
      str1 = str1.replace(str2, '');
      
   return str1;
}

console.log(deleteSubstring('8816168168','816'));

我已经在web api中启用了cors。请帮帮我。

0 个答案:

没有答案