首页 > 编程语言 >vue使用axios请求c#mvc时显示跨域错误

vue使用axios请求c#mvc时显示跨域错误

时间:2022-09-27 08:44:30浏览次数:54  
标签:axios 跨域 vue c# 域名 mvc

解决方法

image

如果允许整个站点对外的跨域访问,则可以在改接口的网站mvc的web.config文件中对允许跨域访问的域名进行设置,如果不指定具体域名,可在<system.webServer></system.webServer>节点中添加下列设置代码:

<httpProtocol>
     <customHeaders>
        <add name="Access-Control-Allow-Origin" value="*" />
        <add name="Access-Control-Allow-Headers" value="*" />
        <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE" />
     </customHeaders>
</httpProtocol>

标签:axios,跨域,vue,c#,域名,mvc
From: https://www.cnblogs.com/java-six/p/16733221.html

相关文章

  • vuex从后端获取data
    //store.jsimport{createStore}from"vuex";importaxiosfrom"axios";conststore=createStore({state(){return{merchants:[]......
  • mac svn 命令
    1、将文件checkout到本地目录svncheckout path(path是服务器上的目录)  例如:svncheckoutsvn://192.168.1.1/pro/domain   简写:svnco2、往版本库中添加新的文件......
  • .NET教程 - .NET基础介绍(.NET Basic)
    更新记录转载请注明出处:2022年9月27日发布。2022年9月26日从笔记迁移到博客。.NET介绍.NET概念(.NET是什么).Net泛指Microsoft公司的一种技术.Net泛指一个平台.N......
  • On_Java_Advanced_Edition
    01枚举类型1.2在枚举类型中添加自定义方法packageorg.example;publicenumRun_RR{YANG("Thisismosthelpful.."),QIAN("ThisisagoodtestofEnum......
  • [Oracle] LeetCode 1290 Convert Binary Number in a Linked List to Integer
    Givenheadwhichisareferencenodetoasingly-linkedlist.Thevalueofeachnodeinthelinkedlistiseither0or1.Thelinkedlistholdsthebinaryrepr......
  • Riscv-V-家电-Autosar-yolov6
    Riscv-V-家电-Autosar-yolov6参考文献链接https://mp.weixin.qq.com/s/4-Xdtm8RzK43Ii-R6tRkughttps://mp.weixin.qq.com/s/G1ARusLbwmJC25mLUTn-NAhttps://mp.weixin.......
  • [Oracle] LeetCode 450 Delete Node in a BST
    GivenarootnodereferenceofaBSTandakey,deletethenodewiththegivenkeyintheBST.Returntherootnodereference(possiblyupdated)oftheBST.Ba......
  • TypeScript extends
    ......
  • [Typescript] 38. Medium - Diff
    Getan Object thatisthedifferencebetween O & O1/*_____________YourCodeHere_____________*/typeDiff<T,S>={[KinExclude<(keyofT|keyof......
  • Django的CBV
    https://www.bilibili.com/video/BV1z5411D7BQ?p=3&vd_source=caabcbd2a759a67e2a3de8acbaaf08ea     get、post那些方法都是固定的,只要请求使用对应的请求......