国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > web前端 > jscript > AJAX下客户端调用服务端页面方法

AJAX下客户端调用服务端页面方法

来源:程序员人生   发布时间:2014-04-22 08:21:00 阅读次数:3080次

1.客户端代码如下:

//函数功能:客户端调用页面服务端方法

//示例:

//参数说明:

//isStaticMethod:是否是静态方法

//methodName:方法名称

//methodParamter:[可选]方法参数,必须是类型MethodParamter的实例或者null值(无参数)
//callBackMethod:[可选]方法调用完后回调的客户端方法,客户端方法形式为 function callBackMethod(result){},result是个json对象,例如:function HandleCheckListResult(result){},参数值就是'HandleCheckListResult'
//assemblyAndClassName:[可选]页面服务端所在组件和类名,形式为: 'AssemblyName|ClassFullName',例如: Weiky.dll|Weiky.AccessoriesForm'
function CallPageMethod(isStaticMethod,methodName,methodParamter,callBackMethod,assemblyAndClassName)
...{
if(methodParamter && typeof(methodParamter.AddBoolParamter) != 'function')
...{
alert(“参数methodParamter必须是类型MethodParamter的实例或者null值");
return;
}
if(assemblyAndClassName == null)
...{
if(typeof(AssemblyAndClassName) != 'undefined')
...{
assemblyAndClassName = AssemblyAndClassName;
}
else
...{
alert("未提供页面服务端所在组件和类名");
return;
}
}
try
...{
MyWebService.CallPageMethod(assemblyAndClassName,isStaticMethod,methodName,methodParamter?methodParamter.ToJson():null,methodParamter.ToType(),callBackMethod?callBackMethod:'', CallBackByWebService,HandleServiceMethodCallError);
}
catch(err)
...{
alert('将参数转换成JSON对象失败!');
}
}

function CallBackByWebService(result)
...{
var json = ConvertStringToJson(result);
if(json.Type != 0)
...{
ShowMessageBox2(json);
}
else
...{
var callBackMethod = json.HighlevelMessage;
if(callBackMethod != '')
...{
json.HighlevelMessage = '';
json.Message = ReplaceString(json.Message,'┍',' ');
eval(callBackMethod + '(json)');
}
}
}

function MethodParamter()
...{
var paramter = '';
var json = null;

this.AddStringParamter = function (value)
...{
AddParamter('string',ReplaceString(ReplaceString(value,'"','"'),' ','┍'));
}

this.AddGuidParamter = function (value)
...{
AddParamter('guid',value);
}

this.AddDateParamter = function (value)
...{
AddParamter('date',value);
}

this.AddIntParamter = function (value)
...{
AddParamter('int',value);
}

this.AddDecimalParamter = function (value)
...{
AddParamter('decimal',value);
}

this.AddBoolParamter = function (value)
...{
AddParamter('bool',value);
}

function AddParamter(type,value)
...{
if(paramter != '')
...{
paramter += ','
}
paramter += '{"Type":"' + type + '","Value":"' + value + '"}';
}

this.AddJsonParamter = function (p)
...{
json = p;
}

this.ToJson = function ()
...{
if(json)
...{
return json;
}
if(paramter != '')
...{
return eval('[' + paramter + ']');
}

return null;
}

this.ToType = function ()
...{
return json?1:0;
}
}
2.服务端webservice提供给ScriptManager控件,webservice代码如下:

[System.Web.Script.Services.ScriptService]
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
public class MyWebService : System.Web.Services.WebService
...{
[WebMethod(EnableSession = true)]
public string CallPageMethod(string assemblyAndClassName, bool isStaticMethod, string methodName, object paramtersPackage,int mpType,string callBackMethod)
...{
try
...{
object result = "";
bool succeed = false;
if (isStaticMethod)
...{
Type type = GetActualType(assemblyAndClassName);
if (type != null)
...{
succeed = true;
if (mpType == 1)
...{
result = type.InvokeMember(methodName, System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.InvokeMethod | System.Reflection.BindingFlags.Static, null, null, new object[] ...{ paramtersPackage });
}
else
...{
result = type.InvokeMember(methodName, System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.InvokeMethod | System.Reflection.BindingFlags.Static, null, null, GetMethodArgs(paramtersPackage));
}
}
}
else
...{
object o = WebBase.GetActualInstance(assemblyAndClassName, this.Server.MapPath("~/bin/"));
if (o != null)
...{
succeed = true;
if (mpType == 1)
...{
result = o.GetType().InvokeMember(methodName, System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.InvokeMethod | System.Reflection.BindingFlags.Instance, null, o, new object[] ...{ paramtersPackage });
}
else
...{
result = o.GetType().InvokeMember(methodName, System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.InvokeMethod | System.Reflection.BindingFlags.Instance, null, o, GetMethodArgs(paramtersPackage));
}
}
}

return succeed ? 0 : 1, succeed ? (result == null ? "" : result.ToString()) : string.Format("获取组件信息失败,请检查组件参数{0}是否正确", assemblyAndClassName);
}
catch (Exception err)
...{
return err.Message;
}
}
private object[] GetMethodArgs(object paramtersPackage)
...{
if (paramtersPackage == null) return null;

int i = 0;
object[] args = new object[((object[])paramtersPackage).Length];
foreach (System.Collections.Generic.Dictionary<string, object> p in (object[])paramtersPackage)
...{
switch (p["Type"].ToString().ToLower())
...{
case "string":
args[i++] = p["Value"].ToString().Replace("┍"," ");
break;
case "guid":
args[i++] = new Guid(p["Value"].ToString());
break;
case "date":
args[i++] = Convert.ToDateTime(p["Value"].ToString());
break;
case "int":
args[i++] = Convert.ToInt32(p["Value"].ToString());
break;
case "decimal":
args[i++] = Convert.ToDecimal(p["Value"].ToString());
break;
case "bool":
args[i++] = Convert.ToBoolean(p["Value"].ToString());
break;
default:
args[i++] = p["Value"];
break;
}
}
return args;
}
private WebBaseForm GetActualInstanceForm(string assemblyAndClassName)
...{
object o = WebBase.GetActualInstance(assemblyAndClassName,this.Server.MapPath("~/bin/"));
if (o != null)
...{
if (o is WebBaseForm)
...{
return (WebBaseForm)o;
}
}

return null;
}

private Type GetActualType(string assemblyAndClassName)
...{
if (assemblyAndClassName != "")
...{
string[] ac = assemblyAndClassName.Replace("!", "").Split('|');
if (ac.Length == 2)
...{
ac[0] = WebBase.AddPath(ac[0],this.Server.MapPath("~/bin/"));
return System.Reflection.Assembly.LoadFrom(ac[0]).GetType(ac[1]);
}
}

return null;
}
}
3.客户端调用示例:

function DataDDL_Change(ddl)
...{
var mp = new MethodParamter();
mp.AddIntParamter(DropDownList_GetValue(ddl));
mp.AddIntParamter(EntityObjectId);
CallPageMethod(true,'GetEntityData',mp,'LoadDataTree');
}

function LoadDataTree(json)
...{
alert(json.Message);
}
总结:通过这样的封装,客户端调用服务端静态/实例方法非常方便,并且不会引起任何页面的postback。上面所用客户端技术有ajax,json等

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/weiky626/archive/2007/07/14/1690378.aspx

生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生