gpt4 book ai didi

c# - 异步调用 .NET 方法并在完成后绑定(bind)到网格

转载 作者:行者123 更新时间:2023-11-30 22:29:25 25 4
gpt4 key购买 nike

Container.RetrieveItems() 调用需要一段时间的服务,所以我想异步调用它(检索项目后,它们被设置为 Container 类的 List 属性)。检索项目完成后,我希望它更新 updatePanel 内的 gridView(updatePanel Mode="Conditional"和 ScriptManager EnablePartialRendering="true"。UpdatePanel 没有触发项目)。

我已经设置了断点并逐步完成了每一步。检索项目,网格是数据绑定(bind)的,然后它调用更新。没有抛出异常,但网格没有更新内容。如果我将 UpdatePanel 设置为使用触发器和 Timer.OnTick 事件进行更新,它会完美运行,但是我只需要在检索到项目后更新它,因此在完成服务调用后触发手动 UpdatePanel.Update() 将是理想的。

我做了很多搜索,但所有的答案都是“你忘了调用 DataBind()”

有什么我想念的吗?

    private void UpdateGrid()
{
grid.DataSource = Container.List;
grid.DataBind();
updatePanel.Update();
}

protected void Page_Load(object sender, EventArgs e)
{
var task = Task.Factory.StartNew(Container.RetrieveItems);
task.ContinueWith((x) => UpdateGrid());
}

更新:我设置了一个更简单的测试来尝试找出问题所在。我创建了一个标签,其 Text 属性将在方法完成时更新。当页面加载时,它会调用该方法,当该方法完成时,它会调用 updatePanel.Update() 但没有任何变化。

根据 Jaimes 的建议,我随后尝试在 Button_click 的回传中调用手动更新,它确实更新了标签。这就是为什么我当前的设置不起作用的原因,尽管我仍在寻找在完成异步任务时更新内容的最佳方法。

最佳答案

Jamie 的方向是正确的。呈现页面后,您的服务器无法将新数据“推送”到客户端。客户端必须发起请求。我会在客户端设置一个计时器或使用 JavaScript setTimeout 定期轮询服务器以查看它是否完成。

网络服务方法

另一种方法是在服务器上设置网络服务,然后从您的页面调用它。这将在新线程中执行,并在结果可用后立即异步更新网格。

首先您需要设置一个 WCF Web 服务。如果您不确定,有成千上万篇关于此的文章。这是其中之一:http://www.codeproject.com/Articles/16973/Simple-Web-Service-using-WCF-Windows-Communication

这是我的一个项目中的一些示例代码:

namespace UI.Web.WebServices
{
[ServiceContract(Namespace = "WebServices")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class WebServiceName
{
[OperationContract]
[WebInvoke(ResponseFormat = WebMessageFormat.Json)]
public FacilityResult[] MethodName()
{
FacilityService facilityService = new
return facilityService .GetAssignments()).ToArray();
}
}
}

从客户端调用网络服务

接下来,您需要使用 JavaScript 对页面中的网格进行数据绑定(bind):http://blog.ashmind.com/2007/06/21/client-side-databinding-with-aspnet-ajax-futures/

这是同一项目中的一些示例代码。该项目使用 jQuery 而不是像链接中的示例那样的纯 JavaScript:

<script type="text/javascript">
function getGridData() {
var payload = { }; // Put data to include here, if any

$.ajax({
type: "POST",
url: "/WebServiceName.svc/MethodName",
data: JSON.stringify(payload),
contentType: "application/json",
dataType: "json",
success: function (msg) {
bindResultsToGrid(msg.d);
},
error: function (xhr) { alert('error' + xhr.responseText); }
});
}

function bindResultsToGrid(data)
{
...
}
</script>

引用文献 http://aspalliance.com/1301_Unveil_the_Data_Binding_Architecture_inside_Microsoft_ASPNET_Ajax_10__Part_1

http://aspalliance.com/1301_Unveil_the_Data_Binding_Architecture_inside_Microsoft_ASPNET_Ajax_10__Part_2

关于c# - 异步调用 .NET 方法并在完成后绑定(bind)到网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10238215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com