jQuery ajax在生成动态html时出错

时间:2013-11-04 06:09:24

标签: jquery ajax

我试图在点击链接时显示带有用户信息的弹出窗口,但是我收到错误。我读了几篇与此相关但无法解决问题的帖子。请参阅代码。

我从gridview中的链接按钮调用ShowUserPopup。在ShowUserPopup内部我调用LoadUserDataTable函数将数据加载到动态html表中,并将表添加到div中,但是我收到错误(我想在下面的行中)。服务因为遇到断点而被执行

success: function (data) {

这是代码

function ShowUserPopup(UID) {
    //$("#divDetails").html(LoadUserDataTable());
    LoadUserDataTable();
    $("#divDetails").dialog({
        width: 600,
    });
    $(".ui-dialog-titlebar").hide()    //Hide Title Bar

    $('#divDetails').dialog('open');
    return false;
}
function LoadUserDataTable(){
    $.ajax(
        {
            contentType: "application/json; charset=utf-8",
            url: "../svc/SearchService.svc/GetUserProfile",
            type: "GET",
            dataType: "json",
            success: function (data) {
                    $.each(data.GetUserProfileResult, function (value, key) {
                    table= $('<table></table>');
                    row = $('<tr></tr>');

                    $('<td></td>', {
                        text: 'Name'
                    }).appendTo(row);

                    $('<td></td>', {
                        text: value.FirstName + ' ' + value.LastName
                    }).appendTo(row);
                    row.appendTo(table);

                    //return table;
                    table.appendTo("#divDetails");
                    });
            },
            error: function (result) {
                alert("Error");
            }
        });
}

这是gridview模板中的链接按钮

                <ItemTemplate>
                <a id="cUser" runat="server" href="User Details" onclick ="javascript:ShowUserPopup(1);return false;"><%#Eval("User")%></a>
            </ItemTemplate>

来自fiddler的更多错误信息:

ReadResponse()失败:服务器未返回此请求的响应.Server返回0字节。

请参阅服务代码。

    [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
public class SearchService : ISearchService
{

    [OperationContract]
    [WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat = WebMessageFormat.Json)]
    public List<cbEntity.User> GetUserProfile()
    {
        return new cbUserProfile(thisSession.UserId).GetUserProfile();
    }
 }   
public class cbUserProfile:User 
{
    public List<cbEntity.User> GetUserProfile()
    {
        List<cbEntity.User> lstReturn = new List<cbEntity.User>();
        Load();
        lstReturn.Add(this);
        return lstReturn;
    }       
}                                                                     

0 个答案:

没有答案