1

我正在使用 .asmx Web 服务,它将返回我想要返回的二维数组,row1={'id1','name1'}, row2={'id2','name2'}但我无法这样做。

代码部分

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public Array getAlbumsAndPhotos()
{
    DataTable resultText = new DataTable();
    resultText = AdminUserDataAccess.getAlbumsAndPhotosforAsmx();
    string[,] ResultResponse = new string[resultText.Rows.Count , resultText.Columns.Count];
    for (int i = 0; i < resultText.Rows.Count; i++)
    {

        for (int j = 0; j < resultText.Columns.Count; j++)
        {
            ResultResponse[i, j] = resultText.Rows[i][j].ToString();

        }
    }
    return ResultResponse;
}

这给了我输出:

    [0,0]:"id1"
    [0,1]:"name1"
    [1,0]:"id2"
    [1,1]:"name2"

我希望返回两行而不是四行,其中包含单个第 0 索引(带有 id1 和 name1)和第一个索引(带有 id2 和 name2)。某种类型的嵌套数组输出是预期的。但我不能这样做。任何帮助表示赞赏。:)

编辑:解决方案

    [WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public List<string[]> getAlbumsAndPhotos()
{
    DataTable resultText = new DataTable();
    resultText = AdminUserDataAccess.getAlbumsAndPhotosforAsmx();
    string[] rowsValues = new string[resultText.Rows.Count];
    var list = new List<string[]>();
    for (int i = 0; i < resultText.Rows.Count; i++)
    {
        string col1 = resultText.Rows[i][0].ToString();
        string col2 = resultText.Rows[i][1].ToString();
        list.Add(new[] { col1, col2});
    }
    return list;

我可以使用 List 或 Array list 来实现这一点。谢谢。:)

4

0 回答 0