在 Visual Studio 中,我正在开发的网站上有一些 Javascript 代码。在调试时,我正在使用对“localhost”的 $ajax 调用。部署后,它需要是实际的服务器:
$('#textInput_UserName').focusout(function () {
var _username = $('#textInput_UserName').val();
$.ajax({
url: 'http://localhost:8809/Account/UserNameExists/',
data: { username: _username },
dataType: 'html',
});
当我发布时,我需要将该 localhost 转换为实际域:
$('#textInput_UserName').focusout(function () {
var _username = $('#textInput_UserName').val();
$.ajax({
url: 'http://www.mydomain.com/Account/UserNameExists/',
data: { username: _username },
dataType: 'html',
});
是否有一种简单/自动的方法来执行此操作,类似于 Web Config 转换的工作方式?
非常感谢!