我需要找到登錄到當前會話的用戶。我嘗試了以下,但不起作用: 任何人都可以幫助我嗎?提前致謝! 如何獲取登錄到當前會話的用戶的ID?
$.get(CurrentServerAddress + '/service/v4/rest.php', {
method: "get_user_id",
input_type: "JSON",
response_type: "JSON",
rest_data:'"new_get_user_id":["session":"' + SugarSessionId + '"]'
}, function(data) {
if (data !== undefined) {
var userID = jQuery.parseJSON(data);
}
});
這是我在這方面的發現:http://developers.sugarcrm.com/docs/OS/6.3/-docs-Developer_Guides-Sugar_Developer_Guide_6.3.0-Sugar_Developer_Guide_6.3.0.html – Miky