我正在检查create-react-app
系统统计信息,在Ubuntu 16.10 x86_64中,内核HZ设置为var s, searchUts;
var getValue = '';
var generateObject = function() {
var chaseObj = {
"timeFilters" : getValue
};
return chaseObj;
};
searchUts = s = {
createValue: function(obj) {
var x = 10;
var y = 20;
obj.timeFilters = x + y; //append this value to chaseObj inside the generateObject
},
postToBackEnd: function() {
var chaseObj = generateObject();
this.createValue(chaseObj);
console.log(JSON.stringify(chaseObj));
}
};
s.postToBackEnd();
。
在 <div class="input-field col s12 flow-text">
<i class="material-icons prefix">today</i>
<input id="FECHA_NAC_E" name="FECHA_NAC_E" value="" required type="text" class="datepicker">
<label class = "flow-text" for="FECHA_NAC_E">Fecha de Nacimiento</label>
</div>
中,我跑了:
<script type="text/javascript">
function insertData() {
var NUM_EMP=$("#NUM_EMP").val();
var NOMBRE_E=$("#NOMBRE_E").val();
var APELLIDO_E=$("#APELLIDO_E").val();
// var FECHA_NAC_E=$("#FECHA_NAC_E").val(); Doesn't work
// var FECHA_NAC_E=$("#FECHA_NAC_E").text(); Doesn't work
var FECHA_NAC_E=$("#FECHA_NAC_E").get('select', 'yyyy-mm-dd') //Doesn't work
var SEXOE=$("input[name=SEXOE]").val();
var NACIONALIDAD=$("#NACIONALIDAD").val();
// AJAX code to send data to php file.
$.ajax({
type: "POST",
url: "altaempleados.php",
data: {NUM_EMP:NUM_EMP,NOMBRE_E:NOMBRE_E,APELLIDO_E:APELLIDO_E,FECHA_NAC_E:FECHA_NAC_E,SEXOE:SEXOE,NACIONALIDAD:NACIONALIDAD},
dataType: "JSON",
success: function(data) {
$("#message").html(data);
$("p").addClass("alert alert-success");
},
error: function(err) {
console.log(err);
alert(err.err);
}
});
}
在那之后,我发现在include('db.php');
$NUM_EMP=$_POST['NUM_EMP'];
$NOMBRE_E=$_POST['NOMBRE_E'];
$APELLIDO_E=$_POST['APELLIDO_E'];
$FECHA_NAC_E=$_POST['FECHA_NAC_E'];
$SEXOE=$_POST['SEXOE'];
$NACIONALIDAD=$_POST['NACIONALIDAD'];
$stmt = $DBcon->prepare("INSERT INTO empleados(NUM_EMP,NOMBRE_E,APELLIDO_E,FECHA_NAC_E,SEXO_E,NACIONALIDAD) VALUES(:NUM_EMP,:NOMBRE_E,:APELLIDO_E,:FECHA_NAC_E,:SEXOE,:NACIONALIDAD)");
$stmt->bindparam(':NUM_EMP', $NUM_EMP);
$stmt->bindparam(':NOMBRE_E', $NOMBRE_E);
$stmt->bindparam(':APELLIDO_E', $APELLIDO_E);
$stmt->bindparam(':FECHA_NAC_E', $FECHA_NAC_E);
$stmt->bindparam(':SEXOE', $SEXOE);
$stmt->bindparam(':NACIONALIDAD', $NACIONALIDAD);
$DBcon=null;
// By this way you can close connection in PDO.
if($stmt->execute())
中睡了1秒,过去的总jiffies是/proc/stat
,而不是250
。
(我总结了所有10个数字)。
我不知道为什么总共通过jiffies的不匹配。请帮助我更好地理解bash
。
谢谢