我不知道我的标题是否有点误导。但这是我真正需要帮助的地方。
我正在获取此网址:
$.get("/fb/login/"+fbEmail, function(data){
console.log(data);
});
这是我的路线:
GET /fb/login/:email presentation.controllers.Auth.authenticateSocialNetwork(email:String)
这是我的行动:
def authenticateSocialNetwork(email:String) = Action {
if(!editorRepo.getEditorByEmail(email).isEmpty){
Redirect(routes.Profile.editorProfile).withSession(Security.username -> email)
} else {
Redirect(routes.Profile.initiatorProfile).withSession(Security.username -> email)
}
}
我对此的期望是我的动作被调用并触发其中的内容。换句话说,重定向。
但实际发生的情况并非如此不合逻辑,那就是我的 $.get 调用得到了我重定向的响应。
我如何实际调用我的操作方法,而不向 javascript 发送响应?
这是我在 javascript 中的函数,发布此代码段以便在我们在上面的评论中的讨论中更清楚。
function addClickToLoginButtons(){
$("#loginWithFb").click(function(){
FB.login(function(response){
if(response.authResponse){
FB.api('/me', function(response){
var fbEmail = response.email;
$.get("/fb/isRegisteredAtNetwork/"+fbEmail+"/facebook", function(data){
if(data == "true"){
if(confirm("Do you want to log with facebook-account "+fbEmail+"?")){
$.get("/fb/login/"+fbEmail, function(data){ *//HERE'S WHERE I WOULD WANT TO CALL MY METHOD IN SCALA*
console.log(data);
});
} else {
console.log("try again with a different facebook-account");
} //end confirm else
} else {
console.log("Logged in not in database");
}//end get else
});
});
} else {
console.log("permission not granted");
} // end authResponse else
}, {scope: 'email'});
});
}