2015年工作中遇到的問題111-120

小雷FansUnion發表於2015-11-03
111.Json格式的Java字串轉換成Java集合。
String photos="";
List<Photo> list=JSONArray.parseArray(photos, Photo.class);


com.alibaba.fastjson.JSONArray


112.JavaScript中字串換行-續行。
$("#add").on("click", function() {
var str="\
ss\
ss\
";
alert(str);
});
 
 VBScript 中的續行符是 "_"  下劃線
 JavaScript中的續行符是  "\"     反斜槓
參考資料:http://bbs.blueidea.com/thread-2955862-1-1.html


113.JavaScript中字串全部替換。
<script>
var strTemplate=
'<tr id="{photo.id}" class="tr">'+
'<td><input id="{photo.id}-name" type="text" value="" /></td>'+
'</tr>';
var photoId = new Date().getTime();
var html = strTemplate.replace(/{photo.id}/g,photoId);
alert(html);
</script>
  //只會替換第1個
  replace("a","b");
  //正則替換多個,/g標識全文匹配,第1個“/”應該表示這是一個正則
  strTemplate.replace(/{photo.id}/g,photoId)
 參考資料:http://www.cnblogs.com/skykang/archive/2011/08/04/2127158.html
 
114.Linux執行ls命令卡住。
 伺服器某個目錄/var,執行ls就卡住了。
 網上找了一些答案,最有可能是 因為“掛載引起的”。
 ls /var ... 卡住~
 
 其它補充解決辦法:
 ls /var & a.txt,vim a.txt 不夠直接
 ls /var | less,直接一點


 檢查檔案系統
 fsck from util-linux-ng 2.17.2
e2fsck 1.41.12 (17-May-2010)
/dev/mapper/VolGroup-lv_root is mounted.
e2fsck: Cannot continue, aborting.


115.jquery-easyui報錯Uncaught TypeError: Cannot read property 'options' of undefined。
通過調整js引入,js函式的位置,解決了這個問題。


116.Starting activity cn.fansunion.MainActivity on device 51bf63f2
[2015-10-28 21:09:15 - xp2p4android] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=cn.fansunion/.MainActivity }
[2015-10-28 21:09:15 - xp2p4android] New package not yet registered with the system. Waiting 3 seconds before next attempt.


解決方案: Try this Project->Clean in eclipse, and the deploy it again. 


117.Mongodb-Shell查詢,查詢不同欄位的個數。
//查詢不同的id-select distinct(id) from projectDetail
db.projectDetail.distinct("id");
//個數
db.projectDetail.distinct("id").length;
//查詢id--select count(id) from projectDetail;
db.projectDetail.find({_id: {$exists: true}}).count();


118.京東雙11活動,圖書滿200減100。
我計劃買N*200元的,結果只減了100元。
機智的我,分了N個200元的訂單,多花了不少時間。
結果出現了“重複下單”的情況,多個訂單中有相同的書籍。
主要是因為,京東在訂單稽核通過後,才會把“我的關注”中的書籍,刪除~
訂單還在稽核中的時候,我就繼續從“我的關注”加入購物車了。


京東這種“業界良心”的舉措,每年都應該來幾波~


119.騰達的無線路由器,正用的好好的忽然上不去了 開啟網頁就出現Access Error:Site or Page Not Found。
電信寬頻需要撥號登入,需要訪問路由器http://192.168.0.1,手動登入。
令我比較鬱悶的是,每過一段時間,都需要從新登陸一次。


120.Jquery和Easyui結合的時候,修改出問題了。
  <!-- class="easyui-textbox" required="true"  validtype="checkFundNo" -->
       <input name="fundNo" id="fundNo"  disabled="disabled">
一個input表單,$("#fundNo").val("A");無法正常修改表單的值。
於是我改造了下:
var a=$("#fundNo");
debug看a的值,發現a是存在的。
應該是easyui,包裝了這個物件。
我臨時,去掉了樣式和一些不必要的屬性,就正常了。

相關文章