我想獲得按名稱排列的用戶列表,並且首先與新用戶排列。 我使用的文檔參考:http://quickblox.com/developers/Users#Sortquickblox - JavaScript的我可以得到按名稱排序的用戶列表?
我想這個代碼,但它不工作:
function QBlistUsers(page) {
var userParams = {};
var page = currentPage;
{userParams.perPage = itemsPerPage;}
{userParams.pageNo = page;}
{userParams.order = ['desc','string','full_name'];}
//{userParams.order = 'desc+string+full_name';} // I've try this too, instead of the previous line
//load new rows per page
QB.users.listUsers(userParams, function(err, response){...}
的響應,根本無視帕拉姆「秩序」。我是我做錯了什麼?
感謝幫助
你想數組排序?問題不清楚。請給你一些額外的點,你想要什麼。示例代碼,你試過這樣的 – Bluewings
嗨,我編輯我的問題,對不起,它不明確 –