處理 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
import org.springframework.web.bind.annotation.CrossOrigin;
後端
import org.springframework.web.bind.annotation.RequestMapping;
瀏覽器
import org.springframework.web.bind.annotation.RestController;
app
@CrossOrigin
spa
@RestController
code
@RequestMapping("test")
接口
public class TestController {
@RequestMapping("/one")
public Object one(HttpServletRequest request){
System.out.println("請求成功");
return "請求成功";
}
....
}