我正在尝试从控制器中检索数据。这是我的Json错误的新转折。我在index.cshtml页面添加了一个函数,我尝试添加代码以从控制器获取信息。我添加了一个基本代码,用于将字符串写入文本框(所有本地)并且有效。当我尝试从控制器调用时,代码是什么并不重要我得到了这个错误: Error Message http://www.mousecreations.com/error.jpg 我尝试了以下相同的错误。可能是我在搜索中找到的其他一些组合。
$.getJSON(@Url.Action("GetIPAddress","getipaddress"),
$.get(......)
$.ajax(......)
整个功能
function processgetip(event)
{
// Within this function, make an AJAX call to get the IP Address
$.getJSON(@Url.Action("GetIPAddress","getipaddress"), function (ip) {
// When this call is done, your IP should be stored in 'ip', so
// You can use it how you would like
// Example: Setting a TextBox with ID "YourElement" to your returned IP Address
$("#facility").val(ip);
});
}
此错误与其他错误不同,那么在该进程事件中会导致其他进程未定义?