0

我想使用 Ajax 异步同时将值从队列更新到 sql 表。它不适合我。

我的代码

 function ProcessQueue() {
    $.ajax({
        url: '@Url.Action("process", "MyAccount")',
        type: 'GET',
        dataType: 'html',
        async: true,
    });
    setTimeout(function () { ProcessQueue(); }, 900);
}

控制器 :

 public void process()
    {
        for (int i = 0; i < 10; i++)
        {
            calling table update function here. ....
        }
    }

谢谢

4

1 回答 1

0

您的控制器操作是静态的,只是将其删除,假设其他一切正常,它可能会起作用。您的操作中还有一个非可选参数,您可能想要提供一些可以使用的东西,看起来不像您给它任何东西。

于 2013-08-05T10:12:20.557 回答