新しい場所を割り当てたいのですが、どういうわけかできません。これをしているときにエラーが発生しました。これが私のコードです
jQuery.ajax({
type: "POST",
data: 'name='+ countryname,
url: "master/ValidationCountry.jsp",
// cache: false,
async: false,
success: function(response){
window.location.assign(request.getContextPath() +"/jsp/admin/AdminMaster.jsp?a=1");
// window.location.reload();
// window.location.replace(request.getContextPath() +"/jsp/admin/AdminMaster.jsp?a=1");
check = true;
},
error: function() {
check=false;
}
});
私が得たエラーは次のとおりです: ReferenceError: request is not defined
助けてください。