前端接收数据如何排序

按照某一字段排序(sort)升序:

productType.sort(function (a, b) {

return b.sort < a.sort ? 1 : -1

});

降序:

productType.sort(function (a, b) {

return b.sort < a.sort ? -1 : 1

});

 this.productType=productType.sort(function (a, b) {
      return b.sort < a.sort ? 1 : -1
 });
前端接收数据如何排序_第1张图片

你可能感兴趣的:(前端,vue.js,前端,javascript)