1.字符串轉整型php
1 for(var i=0;i < data.length;i++){ 2 data[i]['sales']= parseInt(data[i]['sales']) 3 data[i]['times']= parseInt(data[i]['times']) 4 }
2.當你不想獲取表單裏的某個內容的時候,能夠選擇用這個禁用ajax
1 disabled="disabled"
3.只讀屬性json
1 readonly
4.表單提交加一個屬性,能夠讓你不上傳圖片時不會接受圖片的傳過來的空值數組
1 enctype="multipart/form-data"
5.php裏在當前的時間上加一年的時間編碼
(1) spa
1 $a=time(); 2 $date = date('Y',$a) + 1 . '-' . date('m-d H:i:s');//一年後日期 3 $time = strtotime($date);
(2)code
1 $time=strtotime("+1 year");
(3) 同理,不單單能夠+year 還能夠是天, 月日均可以的,以下代碼:orm
1 <?php 2 echo strtotime("now"), "\n"; 3 echo strtotime("10 September 2000"), "\n"; 4 echo strtotime("+1 day"), "\n"; 5 echo strtotime("+1 week"), "\n"; 6 echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n"; 7 echo strtotime("next Thursday"), "\n"; 8 echo strtotime("last Monday"), "\n"; 9 ?>
6.當使用join查詢的時候就不能用聚合查詢,也就是用join 的時候不能有sum的這些統計類的東西blog
7. ajax改變頁面狀態獲取當前點擊狀態的id的方法索引
js中用 獲取id
8.搜索的時候輸入漢字或者英文的時候回遇到保存,這多是由於不是字符串的緣由,變成字符串就是了
9.刪除數組當中的某一個字段用unset
10.合併兩個結構相同,字段同樣的數組
11.數組的下標亂了,好比0 1 3,這就是亂的,怎麼才能寫成0 1 2呢
1 $list_bloc[2]=array_values($list_bloc[2]);//重組數組下標
12.數組轉字符串
1 $s2=implode("','",$store_id);
13.在接口中傳遞不少條數據的時候會遇到查詢的數據變少了的狀況,這是由於數據太多,解決方法
傳遞中
1 $key=array( 2 'id'=>base64_encode(json_encode($product_id)),在傳遞的過程當中用把數據編碼 3 ); 4 5 $style=getProduct_id($key);
接收
1 (json_decode(base64_decode($req['id']),true)接收後須要反編碼格式
這樣就能夠用了
14.關閉layer.open 打開的彈出層並刷新父頁面
1 parent.window.location.reload(); 2 var index = parent.layer.getFrameIndex(window.name); //獲取窗口索引 3 parent.layer.close(index);