springboot的跨域訪問

處理 No 'Access-Control-Allow-Origin' header is present on the requested resource 問題前端

處理 No 'Access-Control-Allow-Origin' header is present on the requested resource 問題

在開發中,前端同事調用後端同事寫好的接口,在地址中是有效的,但在項目的ajax中,瀏覽器會報 "No 'Access-Control-Allow-Origin' header is present on the requested resource"的錯誤。web

這是因爲瀏覽器禁止ajax請求本地之外的資源,解決辦法以下:ajax

後端同事在Controller層的類上增長@CrossOrign註解,當前文件的全部接口就均可以被調用。spring

 
  1. import org.springframework.web.bind.annotation.CrossOrigin;後端

  2. import org.springframework.web.bind.annotation.RequestMapping;瀏覽器

  3. import org.springframework.web.bind.annotation.RestController;app

  4.  
  5. @CrossOriginspa

  6. @RestControllercode

  7. @RequestMapping("test")接口

  8. public class TestController {

  9.  
  10. @RequestMapping("/one")

  11. public Object one(HttpServletRequest request){

  12. System.out.println("請求成功");

  13. return "請求成功";

  14. }

  15.  
  16.  
  17. ....

  18.  
  19.  
  20. }

相關文章
相關標籤/搜索