从具有多个参数 C# 的 PageMethods 返回值后不调用成功函数
Not Calling Success Function After Returning Values from PageMethods With Multiple Parameters C#
我正在尝试调用我的 OnSuccess 函数,但它没有在服务器中调用它。
我的代码:
function Get_Data(option , text){
//returns 'data', 'data', --not call OnSuccess--
PageMethods.BindSeries(option,text,OnSuccess);
}
function OnSuccess(Response){//content-logic}
检查完所有内容后,我的代码没有问题。我尝试将我的代码部署在不同的应用程序服务器中以进行测试,并且在测试时它确实运行良好。现在,我们正在检查可能的管道问题,为什么我的代码不能在它的 UAT 服务器上工作。可能我的代码没有通过 jenkins 管道正确发布/编译。
我正在尝试调用我的 OnSuccess 函数,但它没有在服务器中调用它。
我的代码:
function Get_Data(option , text){
//returns 'data', 'data', --not call OnSuccess--
PageMethods.BindSeries(option,text,OnSuccess);
}
function OnSuccess(Response){//content-logic}
检查完所有内容后,我的代码没有问题。我尝试将我的代码部署在不同的应用程序服务器中以进行测试,并且在测试时它确实运行良好。现在,我们正在检查可能的管道问题,为什么我的代码不能在它的 UAT 服务器上工作。可能我的代码没有通过 jenkins 管道正确发布/编译。