我试图从另一个域的服务获得响应> " http://another.domain.com/service/"它使用CORS模块,已经存在跨源头。 可以使用
在JS中获取响应return $.ajax({
url: url,
xhrFields: { withCredentials: true }
});
但是我试图在舞者中做到这一点'得到'路由。
这可能吗?在Dancer中提出请求更好吗?
非常感谢。
答案 0 :(得分:1)
其他评论者提到的问题100%没有意义。
但是,如果您尝试在Dancer路线中授予跨域访问权限,正如您的部分问题所述,您就是这样做的:
get '...' => sub {
...
header('Access-Control-Allow-Origin' => '*');
...
};