我是Django的新手,第一次使用celery进行分布式任务。在下面给出的代码段中,我想在表TaskId中的每个元组上调用 get 。但是我的代码是如此基本,而且根本没有使用芹菜。 请建议我如何在表中的不同元组上运行不同的工作程序,没有任何重复的任务。
function initialize() {
var myloc = new google.maps.LatLng(-34.397, 150.644);
var mapOptions = {
zoom: 17,
center: myloc,
scrollwheel: false
};
var map = new google.maps.Map(document.getElementById('map-canvas'),mapOptions);
var marker = new google.maps.Marker({
position: map.getCenter(),
map: map,
animation: google.maps.Animation.BOUNCE
});
var contentString = '<div id="content" style="dir:rtl; text-align:right;">'+
'<div id="siteNotice">'+
'</div>'+
'<h1 id="firstHeading" class="firstHeading"><h1>title here</h1>'+
'<div id="bodyContent">'+
'<p>description here</p>'+
'</div>'+
'</div>';
var infowindow = new google.maps.InfoWindow({
content: contentString,
maxWidth: 250
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
}
google.maps.event.addDomListener(window, 'load', initialize);