为什么我得到"没有重载方法需要0个参数"错误?

时间:2017-08-25 10:03:34

标签: c# asp.net jqgrid jqgrid-asp.net

我得到了#34;没有过载的方法' getStarDropdown'取0个参数"使用以下代码时出错。

我该如何解决这个问题?因为我是新手!

请帮助谢谢:)

头等舱:

public DataTable getStarDropdown(int starID)
    {
        try
        {
            DataTable dtStar = null;
            CommonDAL obj = new CommonDAL();
            DataSet dsAll = obj.getStarEntity(starID);

            if (dsAll != null)
                dtStar = dsAll.Tables[1];
            return dtStar;
        }
        catch (Exception ex)
        {
            string msg = ex.Message;

            ExceptionLogger.WriteToLog(hostWebUrl, "CommonDAL", "getAllDropDown()", ex.Message, ex.StackTrace, ExceptionLogger.LOGTYPE.ERROR.ToString());
            return null;
        }

    }

第二课:

public static List<Dictionary<string, object>> GetStarData()
    {
        CommonBAL obj = new CommonBAL();
        DataTable dt = new DataTable();
        dt = obj.getStarDropdown();

        System.Web.Script.Serialization.JavaScriptSerializer serializer = new System.Web.Script.Serialization.JavaScriptSerializer();
        List<Dictionary<string, object>> rows = new List<Dictionary<string, object>>();
        Dictionary<string, object> row;
        foreach (DataRow dr in dt.Rows)
        {
            row = new Dictionary<string, object>();
            foreach (DataColumn col in dt.Columns)
            {
                row.Add(col.ColumnName, dr[col]);
            }
            rows.Add(row);
        }
        return rows;

    }

2 个答案:

答案 0 :(得分:1)

您的函数需要int

类型的参数

/将整数值传递给函数

 dt = obj.getStarDropdown(1);

答案 1 :(得分:1)

在第二个类中,将值设置为dt时需要一个整数。

所以

dt = obj.getStarDropdown(PUT AN INTEGER HERE)