Ajax async を使用して、キューから同時に 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. ....
}
}
ありがとう