Commit 0b84ccc5 by 蒋勇

d

parent f32ece3b
var system = require("../../../system")
const http = require("http")
const querystring = require('querystring');
var settings = require("../../../../config/settings");
const CtlBase = require("../../ctl.base");
var cacheBaseComp = null;
class PricecatCtl extends CtlBase {
constructor() {
super("common", CtlBase.getServiceName(PricecatCtl));
}
}
module.exports = PricecatCtl;
const system = require("../../../system");
const settings = require("../../../../config/settings");
const appconfig=system.getSysConfig();
module.exports = (db, DataTypes) => {
//定价方式
return db.define("pricecat", {
name: {
type: DataTypes.STRING,
allowNull: false,
},//和user的from相同,在注册user时,去创建
options: {
type: DataTypes.STRING,
allowNull: false,
}//和user的from相同,在注册user时,去创建
}, {
paranoid: true,//假的删除
underscored: true,
version: true,
freezeTableName: true,
//freezeTableName: true,
// define the table's name
tableName: 'p_pricecat',
validate: {
},
indexes: [
// Create a unique index on email
// {
// unique: true,
// fields: ['email']
// },
//
// // Creates a gin index on data with the jsonb_path_ops operator
// {
// fields: ['data'],
// using: 'gin',
// operator: 'jsonb_path_ops'
// },
//
// // By default index name will be [table]_[fields]
// // Creates a multi column partial index
// {
// name: 'public_by_author',
// fields: ['author', 'status'],
// where: {
// status: 'public'
// }
// },
//
// // A BTREE index with a ordered field
// {
// name: 'title_index',
// method: 'BTREE',
// fields: ['author', {attribute: 'title', collate: 'en_US', order: 'DESC', length: 5}]
// }
]
});
}
var a=[1,2]
var b=[3,4]
var c=[5,6]
var d=[7,8,9]
var rows=[a,b,c,d]
console.log(rows.length)
var mid=[]
for(let i=0;i<rows.length;i++){
if(mid.length==0){
console.log("in..........")
let one=rows[i]
let two=rows[++i]
console.log(two,"..........")
one.forEach(item=>{
two.forEach(c=>{
mid.push(item+"|"+c)
})
})
}else{
let next=rows[i]
let tmparray=[]
mid.forEach(m=>{
next.forEach(n=>{
tmparray.push(m+"|"+n)
})
})
mid=tmparray
}
}
console.log(mid)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment