我想使用 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. ....
}
}
谢谢