RError.com

RError.com Logo RError.com Logo

RError.com Navigation

  • 主页

Mobile menu

Close
  • 主页
  • 系统&网络
    • 热门问题
    • 最新问题
    • 标签
  • Ubuntu
    • 热门问题
    • 最新问题
    • 标签
  • 帮助
主页 / 问题 / 1087893
Accepted
zeni1agent
zeni1agent
Asked:2020-02-27 02:00:29 +0000 UTC2020-02-27 02:00:29 +0000 UTC 2020-02-27 02:00:29 +0000 UTC

如何同时与三个多维数组交互?

  • 772

我有三个包含对象的多维数组和 4 个数组重新计算函数。

function fun_1(val_1,val_2,val_3){
return val_1 + val_2 - val_3
}

function fun_2(val_1,val_2,val_3){
return val_1 + val_2 + val_3
}


function fun_3(val_1,val_2,val_3){
return val_1 - val_2 + val_3
}


function fun_4(val_1,val_2,val_3){
return val_1 - val_2 - val_3
}





arr_1 =[
  { x: 20, y: 20, moveTo: true },
  { x: 70, y: 20 },
  { x: 70, y: 40 },
  { curve: {type: "cubic", x1:10, y1:20, x2:30, y2:5},
    x: 3,
    y: 4
  },

  { x: 90, y: 30 },
  { x: 50, y: 30 },
  { x: 50, y: 50 },
  {
    curve: {type: "cubic", x1:50, y1:20, x2:10, y2:4},
    x: 45,
    y: 40
  },
  { x: 40, y: 30 },
  { x: 20, y: 20 }
];






arr_2 =[
  { x: 11, y: 65, moveTo: true },
  { x: 44, y: 43 },
  { x: 70, y: 33 },
  { x: 31, y: 2 },
  { curve: {type: "cubic", x1:10, y1:20, x2:30, y2:5},
      x: 3,
    y: 4
  },
  { x: 530, y: 30 },
  { x: 2, y: 150 },


  { x: 253, y: 233 },
  { x: 212, y: 545 },
  {
      curve: {type: "cubic", x1:50, y1:20, x2:10, y2:4},
    x: 45,
    y: 40
  }
];




arr_3 = [
  { x: 54, y: 123, moveTo: true },
  { x: 44, y: 41 },
  { x: 56, y: 14 },
  { x: 7, y: 2 },

  { x: 11, y: 2 },
  { 
  curve: {type: "cubic", x1:1, y1:4, x2:5, y2:66},
  x: 33,
  y: 11

  },
  { x: 55, y: 33 },


  { x: 66, y: 77 },
  { x: 334, y: 211 },
  {
      curve: {type: "cubic", x1:7, y1:20, x2:5, y2:4},
    x: 45,
    y: 13
  }
];

我需要重新计算整个数组,然后用新数据创建一个数组。

我试着这样做

result = []


var type = 1;


$.each(arr_1, function( index, val_1 ) {
result_1 = []


var val_2 = arr_2[index]
var val_3 = arr_3[index] 

//Проверка существования  curve
curve_check_1 = "curve" in val_1;
curve_check_2 = "curve" in val_2;
curve_check_3 = "curve" in val_3;

if (curve_check_1 || curve_check_2 || curve_check_3){
//Подгон
cur = {type: "cubic", x1:0, y1:0, x2:0, y2:0}

if((curve_check_3 || curve_check_2) &&  !curve_check_1){
val_1['curve'] = cur;
}else if((curve_check_3 || curve_check_1) &&  !curve_check_2){
val_2['curve'] = cur;
} else if((curve_check_1 || curve_check_2) &&  !curve_check_3){
val_3['curve'] = cur;
}

result_1['curve']= [];

result_1['curve']['type'] = "cubic";

if(type == 1){
result_1['curve']['x1'] = fun_1(val_1['curve']['x1'] , val_1['curve']['x1'], val_1['curve']['x1']);
result_1['curve']['y1'] = fun_1(val_1['curve']['y1'] , val_1['curve']['y1'], val_1['curve']['y1']);
result_1['curve']['x2'] = fun_1(val_1['curve']['x2'] , val_1['curve']['x2'], val_1['curve']['x2']);
result_1['curve']['y2'] = fun_1(val_1['curve']['y2'] , val_1['curve']['y2'], val_1['curve']['y2']);
} else if (type == 2){
result_1['curve']['x1'] = fun_2(val_1['curve']['x1'] , val_1['curve']['x1'], val_1['curve']['x1']);
result_1['curve']['y1'] = fun_2(val_1['curve']['y1'] , val_1['curve']['y1'], val_1['curve']['y1']);
result_1['curve']['x2'] = fun_2(val_1['curve']['x2'] , val_1['curve']['x2'], val_1['curve']['x2']);
result_1['curve']['y2'] = fun_2(val_1['curve']['y2'] , val_1['curve']['y2'], val_1['curve']['y2']);
} else if (type == 3){
result_1['curve']['x1'] = fun_3(val_1['curve']['x1'] , val_1['curve']['x1'], val_1['curve']['x1']);
result_1['curve']['y1'] = fun_3(val_1['curve']['y1'] , val_1['curve']['y1'], val_1['curve']['y1']);
result_1['curve']['x2'] = fun_3(val_1['curve']['x2'] , val_1['curve']['x2'], val_1['curve']['x2']);
result_1['curve']['y2'] = fun_3(val_1['curve']['y2'] , val_1['curve']['y2'], val_1['curve']['y2']);
} else if (type == 4){
result_1['curve']['x1'] = fun_4(val_1['curve']['x1'] , val_1['curve']['x1'], val_1['curve']['x1']);
result_1['curve']['y1'] = fun_4(val_1['curve']['y1'] , val_1['curve']['y1'], val_1['curve']['y1']);
result_1['curve']['x2'] = fun_4(val_1['curve']['x2'] , val_1['curve']['x2'], val_1['curve']['x2']);
result_1['curve']['y2'] = fun_4(val_1['curve']['y2'] , val_1['curve']['y2'], val_1['curve']['y2']);
}

}

if(type == 1){
result_1['x'] = fun_1(val_1['x'] , val_2['x'], val_3['x']);
result_1['y'] = fun_1(val_1['y'] , val_2['y'], val_3['y']);
} else if (type == 2){
result_1['x'] = fun_2(val_1['x'] , val_2['x'], val_3['x']);
result_1['y'] = fun_2(val_1['y'] , val_2['y'], val_3['y']);
} else if (type == 3){
result_1['x'] = fun_3(val_1['x'] , val_2['x'], val_3['x']);
result_1['y'] = fun_3(val_1['y'] , val_2['y'], val_3['y']);
} else if (type == 4){
result_1['x'] = fun_4(val_1['x'] , val_2['x'], val_3['x']);
result_1['y'] = fun_4(val_1['y'] , val_2['y'], val_3['y']);
}




result.push(result_1);






});


console.log(arr_1);

console.log(result);

但由于某种原因,我似乎无法正确处理。谁能帮我这个?

javascript
  • 3 3 个回答
  • 10 Views

3 个回答

  • Voted
  1. moxolim
    2020-02-27T19:33:58Z2020-02-27T19:33:58Z

    function fun_1(a,b,c){
    return a+b-c;
    }
    function fun_2(a,b,c){
    return a+b+c;
    }
    function fun_3(a,b,c){
    return a-b+c;
    }
    function fun_4(a,b,c){
    return a-b-c;
    }
    
    var arr_1 =[
    	{x:20,y:20,moveTo:true},
    	{x:70,y:20},
    	{x:70,y:40},
    	{curve:{type:"cubic",x1:10,y1:20,x2:30,y2:5},x:3,y:4},
    	{x:90,y:30},
    	{x:50,y:30},
    	{x:50,y:50},
    	{curve:{type:"cubic",x1:50,y1:20,x2:10,y2:4},x:45,y:40},
    	{x:40,y:30},
    	{x:20,y:20}];
    
    var arr_2 =[
    	{x:11,y:65,moveTo:true},
    	{x:44,y:43},
    	{x:70,y:33},
    	{x:31,y:2},
    	{curve:{type:"cubic",x1:10,y1:20,x2:30,y2:5},x:3,y:4},
    	{x:530,y:30},
    	{x:2,y:150},
    	{x:253,y:233},
    	{x:212,y:545},
    	{curve:{type:"cubic",x1:50,y1:20,x2:10,y2:4},x:45,y:40}];
    
    var arr_3 = [
    	{x:54,y:123,moveTo:true},
    	{x:44,y:41},
    	{x:56,y:14},
    	{x:7,y:2},
    	{x:11,y:2},
    	{curve:{type:"cubic",x1:1,y1:4,x2:5,y2:66},x:33,y:11},
    	{x:55,y:33},
    	{x:66,y:77},
    	{x:334,y:211},
    	{curve:{type:"cubic",x1:7,y1:20,x2:5,y2:4},x:45,y:13}];
    
    
    var result = [];
    var type = 2;
    
    for (var i=0; i<arr_1.length; i++) {//Проверка существования  curve
    	if (arr_1[i].curve){
    		if (arr_2[i].curve){
    			if (arr_3[i].curve){}else{
    				arr_3[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    			}
    		}else if (arr_3[i].curve){
    			arr_2[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		}else{
    			arr_2[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    			arr_3[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		}
    	}else if (arr_2[i].curve){
    		if (arr_3[i].curve){
    			arr_1[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		}else{
    			arr_1[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    			arr_3[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		}
    	}else if (arr_3[i].curve){
    		arr_1[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		arr_2[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    	}
    }
    
    for (var i=0; i<arr_1.length; i++) {//создание массива
    	if (type == 1){
    		if (arr_1[i].curve){
    			result.push({curve:{type:"cubic",x1:fun_1(arr_1[i].curve.x1,arr_2[i].curve.x1,arr_3[i].curve.x1),y1:fun_1(arr_1[i].curve.y1,arr_2[i].curve.y1,arr_3[i].curve.y1),x2:fun_1(arr_1[i].curve.x2,arr_2[i].curve.x2,arr_3[i].curve.x2),y2:fun_1(arr_1[i].curve.y2,arr_2[i].curve.y2,arr_3[i].curve.y2)},x:fun_1(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_1(arr_1[i].y,arr_2[i].y,arr_3[i].y)});
    		}else{
    			if(arr_1[i].moveTo){
    				result.push({x:fun_1(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_1(arr_1[i].y,arr_2[i].y,arr_3[i].y),moveTo:arr_1[i].moveTo});
    			}else{
    				result.push({x:fun_1(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_1(arr_1[i].y,arr_2[i].y,arr_3[i].y)});
    			}
    		}
    	}else if (type == 2){
    		if (arr_1[i].curve){
    			result.push({curve:{type:"cubic",x1:fun_2(arr_1[i].curve.x1,arr_2[i].curve.x1,arr_3[i].curve.x1),y1:fun_2(arr_1[i].curve.y1,arr_2[i].curve.y1,arr_3[i].curve.y1),x2:fun_2(arr_1[i].curve.x2,arr_2[i].curve.x2,arr_3[i].curve.x2),y2:fun_2(arr_1[i].curve.y2,arr_2[i].curve.y2,arr_3[i].curve.y2)},x:fun_2(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_2(arr_1[i].y,arr_2[i].y,arr_3[i].y)});
    		}else{
    			if(arr_1[i].moveTo){
    				result.push({x:fun_2(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_2(arr_1[i].y,arr_2[i].y,arr_3[i].y),moveTo:arr_1[i].moveTo});
    			}else{
    				result.push({x:fun_2(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_2(arr_1[i].y,arr_2[i].y,arr_3[i].y)});
    			}
    		}
    	}else if (type == 3){
    		if (arr_1[i].curve){
    			result.push({curve:{type:"cubic",x1:fun_3(arr_1[i].curve.x1,arr_2[i].curve.x1,arr_3[i].curve.x1),y1:fun_3(arr_1[i].curve.y1,arr_2[i].curve.y1,arr_3[i].curve.y1),x2:fun_3(arr_1[i].curve.x2,arr_2[i].curve.x2,arr_3[i].curve.x2),y2:fun_3(arr_1[i].curve.y2,arr_2[i].curve.y2,arr_3[i].curve.y2)},x:fun_3(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_3(arr_1[i].y,arr_2[i].y,arr_3[i].y)});
    		}else{
    			if(arr_1[i].moveTo){
    				result.push({x:fun_3(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_3(arr_1[i].y,arr_2[i].y,arr_3[i].y),moveTo:arr_1[i].moveTo});
    			}else{
    				result.push({x:fun_3(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_3(arr_1[i].y,arr_2[i].y,arr_3[i].y)});
    			}
    		}
    	}else if (type == 4){
    		if (arr_1[i].curve){
    			result.push({curve:{type:"cubic",x1:fun_4(arr_1[i].curve.x1,arr_2[i].curve.x1,arr_3[i].curve.x1),y1:fun_4(arr_1[i].curve.y1,arr_2[i].curve.y1,arr_3[i].curve.y1),x2:fun_4(arr_1[i].curve.x2,arr_2[i].curve.x2,arr_3[i].curve.x2),y2:fun_4(arr_1[i].curve.y2,arr_2[i].curve.y2,arr_3[i].curve.y2)},x:fun_4(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_4(arr_1[i].y,arr_2[i].y,arr_3[i].y)});
    		}else{
    			if(arr_1[i].moveTo){
    				result.push({x:fun_4(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_4(arr_1[i].y,arr_2[i].y,arr_3[i].y),moveTo:arr_1[i].moveTo});
    			}else{
    				result.push({x:fun_4(arr_1[i].x,arr_2[i].x,arr_3[i].x),y:fun_4(arr_1[i].y,arr_2[i].y,arr_3[i].y)});
    			}
    		}
    	}
    }
    console.log(result);

    • 1
  2. Best Answer
    teran
    2020-02-27T20:29:50Z2020-02-27T20:29:50Z

    假设您需要以下内容。
    您的函数已重命名。pp- 加号,pm- 加号,等等。

    操作的当前功能在变量中指示func。

    function pm(a,b,c){ return a + b - c; }
    function pp(a,b,c){ return a + b + c; }
    function mp(a,b,c){ return a - b + c; }
    function mm(a,b,c){ return a - b - c; }
    
    
    const arr_1 = [{x:20,y:20,moveTo:true},{x:70,y:20},{x:70,y:40},{curve:{type:"cubic",x1:10,y1:20,x2:30,y2:5},x:3,y:4},{x:90,y:30},{x:50,y:30},{x:50,y:50},{curve:{type:"cubic",x1:50,y1:20,x2:10,y2:4},x:45,y:40},{x:40,y:30},{x:20,y:20}];
    const arr_2 = [{x:11,y:65,moveTo:true},{x:44,y:43},{x:70,y:33},{x:31,y:2},{curve:{type:"cubic",x1:10,y1:20,x2:30,y2:5},x:3,y:4},{x:530,y:30},{x:2,y:150},{x:253,y:233},{x:212,y:545},{curve:{type:"cubic",x1:50,y1:20,x2:10,y2:4},x:45,y:40}];
    const arr_3 = [{x:54,y:123,moveTo:true},{x:44,y:41},{x:56,y:14},{x:7,y:2},{x:11,y:2},{curve:{type:"cubic",x1:1,y1:4,x2:5,y2:66},x:33,y:11},{x:55,y:33},{x:66,y:77},{x:334,y:211},{curve:{type:"cubic",x1:7,y1:20,x2:5,y2:4},x:45,y:13}];
    
    
    var result = [];
    var func = pp;
    
    
    for(let idx = 0; idx < arr_1.length; idx++){
        const a = arr_1[idx],
              b = arr_2[idx],
              c = arr_3[idx]; 
              
        const curve = a.curve || b.curve || c.curve;         
    
        var item =  { };	  
        
        if(curve){
            const points = ['x1', 'y1', 'x2', 'y2'];
            item.curve = { type: 'cubic' };
           
            let cp = (v,p) => v.curve ? v.curve[p] : 0;
           
            points.forEach(function(p){
                item.curve[p] = func(cp(a,p), cp(b,p), cp(c,p));
            });	   
        }
    	
        item.x = func(a.x, b.x, c.x);
        item.y = func(a.y, b.y, c.y);
    	
        result.push(item);
    }	
    
    console.log(result);

    • 1
  3. zeni1agent
    2020-02-27T21:10:16Z2020-02-27T21:10:16Z

    基于@moxolim 答案的代码

    function fun_1(a,b,c){
    return a+b-c;
    }
    function fun_2(a){
    return a[0]+a[1]+a[2];
    }
    function fun_3(a,b,c){
    return a-b+c;
    }
    function fun_4(a,b,c){
    return a-b-c;
    }
    
    var arr_1 =[
    	{x:20,y:20,moveTo:true},
    	{x:70,y:20},
    	{x:70,y:40},
    	{curve:{type:"cubic",x1:10,y1:20,x2:30,y2:5},x:3,y:4},
    	{x:90,y:30},
    	{x:50,y:30},
    	{x:50,y:50},
    	{curve:{type:"cubic",x1:50,y1:20,x2:10,y2:4},x:45,y:40},
    	{x:40,y:30},
    	{x:20,y:20}];
    
    var arr_2 =[
    	{x:11,y:65,moveTo:true},
    	{x:44,y:43},
    	{x:70,y:33},
    	{x:31,y:2},
    	{curve:{type:"cubic",x1:10,y1:20,x2:30,y2:5},x:3,y:4},
    	{x:530,y:30},
    	{x:2,y:150},
    	{x:253,y:233},
    	{x:212,y:545},
    	{curve:{type:"cubic",x1:50,y1:20,x2:10,y2:4},x:45,y:40}];
    
    var arr_3 = [
    	{x:54,y:123,moveTo:true},
    	{x:44,y:41},
    	{x:56,y:14},
    	{x:7,y:2},
    	{x:11,y:2},
    	{curve:{type:"cubic",x1:1,y1:4,x2:5,y2:66},x:33,y:11},
    	{x:55,y:33},
    	{x:66,y:77},
    	{x:334,y:211},
    	{curve:{type:"cubic",x1:7,y1:20,x2:5,y2:4},x:45,y:13}];
    
    
    var result = [];
    var type = 2;
    
    for (var i=0; i<arr_1.length; i++) {//Проверка существования  curve
    	if (arr_1[i].curve){
    		if (arr_2[i].curve){
    			if (arr_3[i].curve){}else{
    				arr_3[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    			}
    		}else if (arr_3[i].curve){
    			arr_2[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		}else{
    			arr_2[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    			arr_3[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		}
    	}else if (arr_2[i].curve){
    		if (arr_3[i].curve){
    			arr_1[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		}else{
    			arr_1[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    			arr_3[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		}
    	}else if (arr_3[i].curve){
    		arr_1[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    		arr_2[i].curve = {type:"cubic",x1:0,y1:0,x2:0,y2:0};
    	}
    }
    
    for (var i=0; i<arr_1.length; i++) {//создание массива
    var arr_x = [arr_1[i].x,arr_2[i].x,arr_3[i].x];
    var arr_y = [arr_1[i].y,arr_2[i].y,arr_3[i].y];
    if (type == 1){
    var arr_fun_x = fun_1(arr_x);
    var arr_fun_y = fun_1(arr_y);
    }
    else if (type == 2){
    var arr_fun_x = fun_2(arr_x);
    var arr_fun_y = fun_2(arr_y);
    }
    else if (type == 3){
    var arr_fun_x = fun_3(arr_x);
    var arr_fun_y = fun_3(arr_y);
    }
    else if (type == 4){
    var arr_fun_x = fun_4(arr_x);
    var arr_fun_y = fun_4(arr_y);
    }
    if (arr_1[i].curve){
    var arr_x1 = [arr_1[i].curve.x1,arr_2[i].curve.x1,arr_3[i].curve.x1];
    var arr_y1 = [arr_1[i].curve.y1,arr_2[i].curve.y1,arr_3[i].curve.y1];
    var arr_x2 = [arr_1[i].curve.x2,arr_2[i].curve.x2,arr_3[i].curve.x2];
    var arr_y2 = [arr_1[i].curve.y2,arr_2[i].curve.y2,arr_3[i].curve.y2];
    if (type == 1){
    var arr_fun_x1 = fun_1(arr_x1);
    var arr_fun_y1 = fun_1(arr_y1);
    var arr_fun_x2 = fun_1(arr_x2);
    var arr_fun_y2 = fun_1(arr_y2);
    }
    else if (type == 2){
    var arr_fun_x1 = fun_2(arr_x1);
    var arr_fun_y1 = fun_2(arr_y1);
    var arr_fun_x2 = fun_2(arr_x2);
    var arr_fun_y2 = fun_2(arr_y2);
    }
    else if (type == 3){
    var arr_fun_x1 = fun_3(arr_x1);
    var arr_fun_y1 = fun_3(arr_y1);
    var arr_fun_x2 = fun_3(arr_x2);
    var arr_fun_y2 = fun_3(arr_y2);
    }
    else if (type == 4){
    var arr_fun_x1 = fun_4(arr_x1);
    var arr_fun_y1 = fun_4(arr_y1);
    var arr_fun_x2 = fun_4(arr_x2);
    var arr_fun_y2 = fun_4(arr_y2);
    }
    result.push({curve:{type:"cubic",x1:arr_fun_x1,y1:arr_fun_y1,x2:arr_fun_x2,y2:arr_fun_y2},x:arr_fun_x,y:arr_fun_y});
    }else{
    if(arr_1[i].moveTo){
    result.push({x:arr_fun_x,y:arr_fun_y,moveTo:arr_1[i].moveTo});
    
    }else{
    result.push({x:arr_fun_x,y:arr_fun_y});
    }
    }
    }
    console.log(result);

    • 0

相关问题

Sidebar

Stats

  • 问题 10021
  • Answers 30001
  • 最佳答案 8000
  • 用户 6900
  • 常问
  • 回答
  • Marko Smith

    如何从列表中打印最大元素(str 类型)的长度?

    • 2 个回答
  • Marko Smith

    如何在 PyQT5 中清除 QFrame 的内容

    • 1 个回答
  • Marko Smith

    如何将具有特定字符的字符串拆分为两个不同的列表?

    • 2 个回答
  • Marko Smith

    导航栏活动元素

    • 1 个回答
  • Marko Smith

    是否可以将文本放入数组中?[关闭]

    • 1 个回答
  • Marko Smith

    如何一次用多个分隔符拆分字符串?

    • 1 个回答
  • Marko Smith

    如何通过 ClassPath 创建 InputStream?

    • 2 个回答
  • Marko Smith

    在一个查询中连接多个表

    • 1 个回答
  • Marko Smith

    对列表列表中的所有值求和

    • 3 个回答
  • Marko Smith

    如何对齐 string.Format 中的列?

    • 1 个回答
  • Martin Hope
    Alexandr_TT 2020年新年大赛! 2020-12-20 18:20:21 +0000 UTC
  • Martin Hope
    Alexandr_TT 圣诞树动画 2020-12-23 00:38:08 +0000 UTC
  • Martin Hope
    Air 究竟是什么标识了网站访问者? 2020-11-03 15:49:20 +0000 UTC
  • Martin Hope
    Qwertiy 号码显示 9223372036854775807 2020-07-11 18:16:49 +0000 UTC
  • Martin Hope
    user216109 如何为黑客设下陷阱,或充分击退攻击? 2020-05-10 02:22:52 +0000 UTC
  • Martin Hope
    Qwertiy 并变成3个无穷大 2020-11-06 07:15:57 +0000 UTC
  • Martin Hope
    koks_rs 什么是样板代码? 2020-10-27 15:43:19 +0000 UTC
  • Martin Hope
    Sirop4ik 向 git 提交发布的正确方法是什么? 2020-10-05 00:02:00 +0000 UTC
  • Martin Hope
    faoxis 为什么在这么多示例中函数都称为 foo? 2020-08-15 04:42:49 +0000 UTC
  • Martin Hope
    Pavel Mayorov 如何从事件或回调函数中返回值?或者至少等他们完成。 2020-08-11 16:49:28 +0000 UTC

热门标签

javascript python java php c# c++ html android jquery mysql

Explore

  • 主页
  • 问题
    • 热门问题
    • 最新问题
  • 标签
  • 帮助

Footer

RError.com

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

帮助

© 2023 RError.com All Rights Reserve   沪ICP备12040472号-5