Activiti historical circulation information

Activiti historical circulation information

Query the historical circulation of a specified process

var wfservinfo = 'http://localhost:8080/aopas/service/';
var procinstid = 'b7857bd4f1d948b0b64bae7885a37b5e';	
var url = wfservinfo+'history/historic-task-instances';
$.ajax({
    
    
	url: url,
	data:{
    
    procinstid:procinstid},
	type: "get",
	headers: {
    
    
		header: authtoken
	},
	dataType: "json",
	success: function (result) {
    
    
		console.debug(JSON.stringify(result));
		$.each(result.data, function (index,item) {
    
    
			console.debug(JSON.stringify(this));
		});
		Callback(fragment);
	},
	error:function(e){
    
    console.debug(JSON.stringify(e))}
});	

Guess you like

Origin blog.csdn.net/mylearnbox/article/details/114121601
Recommended