আমি গিটহাবের প্রস্তাব দিচ্ছি : অ্যারে সারণি বাই - শোয়ার্টজিয়ান ট্রান্সফর্মsortBy
ব্যবহার করে এমন পদ্ধতির একটি সর্বোত্তম বাস্তবায়ন
তবে আপাতত আমরা এই পদ্ধতির চেষ্টা করতে যাচ্ছি জিস্ট: সাজ্টবাই-ওল্ড.জেএস ।
আসুন কিছু সম্পত্তি দ্বারা জিনিস সাজানোর জন্য সক্ষম অ্যারে সাজানোর জন্য একটি পদ্ধতি তৈরি করুন।
বাছাইয়ের ফাংশন তৈরি করা হচ্ছে
var sortBy = (function () {
var toString = Object.prototype.toString,
// default parser function
parse = function (x) { return x; },
// gets the item to be sorted
getItem = function (x) {
var isObject = x != null && typeof x === "object";
var isProp = isObject && this.prop in x;
return this.parser(isProp ? x[this.prop] : x);
};
/**
* Sorts an array of elements.
*
* @param {Array} array: the collection to sort
* @param {Object} cfg: the configuration options
* @property {String} cfg.prop: property name (if it is an Array of objects)
* @property {Boolean} cfg.desc: determines whether the sort is descending
* @property {Function} cfg.parser: function to parse the items to expected type
* @return {Array}
*/
return function sortby (array, cfg) {
if (!(array instanceof Array && array.length)) return [];
if (toString.call(cfg) !== "[object Object]") cfg = {};
if (typeof cfg.parser !== "function") cfg.parser = parse;
cfg.desc = !!cfg.desc ? -1 : 1;
return array.sort(function (a, b) {
a = getItem.call(cfg, a);
b = getItem.call(cfg, b);
return cfg.desc * (a < b ? -1 : +(a > b));
});
};
}());
অচলিত ডেটা সেট করা হচ্ছে
var data = [
{date: "2011-11-14T17:25:45Z", quantity: 2, total: 200, tip: 0, type: "cash"},
{date: "2011-11-14T16:28:54Z", quantity: 1, total: 300, tip: 200, type: "visa"},
{date: "2011-11-14T16:30:43Z", quantity: 2, total: 90, tip: 0, type: "tab"},
{date: "2011-11-14T17:22:59Z", quantity: 2, total: 90, tip: 0, type: "tab"},
{date: "2011-11-14T16:53:41Z", quantity: 2, total: 90, tip: 0, type: "tab"},
{date: "2011-11-14T16:48:46Z", quantity: 2, total: 90, tip: 0, type: "tab"},
{date: "2011-11-31T17:29:52Z", quantity: 1, total: 200, tip: 100, type: "visa"},
{date: "2011-11-01T16:17:54Z", quantity: 2, total: 190, tip: 100, type: "tab"},
{date: "2011-11-14T16:58:03Z", quantity: 2, total: 90, tip: 0, type: "tab"},
{date: "2011-11-14T16:20:19Z", quantity: 2, total: 190, tip: 100, type: "tab"},
{date: "2011-11-14T17:07:21Z", quantity: 2, total: 90, tip: 0, type: "tab"},
{date: "2011-11-14T16:54:06Z", quantity: 1, total: 100, tip: 0, type: "cash"}
];
এটি ব্যবহার করছি
পরিশেষে, আমরা "date"
হিসাবে সম্পত্তি হিসাবে অ্যারের ব্যবস্থাstring
//sort the object by a property (ascending)
//sorting takes into account uppercase and lowercase
sortBy(data, { prop: "date" });
আপনি যদি লেটার কেস উপেক্ষা করতে চান, "parser"
কলব্যাক সেট করুন :
//sort the object by a property (descending)
//sorting ignores uppercase and lowercase
sortBy(data, {
prop: "date",
desc: true,
parser: function (item) {
//ignore case sensitive
return item.toUpperCase();
}
});
আপনি যদি "তারিখ" ক্ষেত্রটি Date
টাইপ হিসাবে আচরণ করতে চান :
//sort the object by a property (ascending)
//sorting parses each item to Date type
sortBy(data, {
prop: "date",
parser: function (item) {
return new Date(item);
}
});
এখানে আপনি উপরের উদাহরণটি দিয়ে খেলতে পারেন:
jsbin.com/lesebi