Blob格式數據處理以及DataTable問題處理

1、BLOB格式數據處理jquery

blob 格式處理
MySQL Oracle 有其餘的處理辦法
JFinal框架中
上傳:正常上傳
讀取:
//參考網址 http://www.oschina.net/question/2000689_165923
String id = this.getPara("id");ajax

Tpl tpl = Tpl.dao.findById(id);
Tpl_Txt tpl_Txt = Tpl_Txt.dao.findById(id);
//說明 tpl_content 是BLOB 類型 ;
String content ="";
try {
content = new String(tpl_Txt.getBytes("tpl_content"),"utf-8");
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("===================================="+"/n"+content);
setAttr("tpl",tpl);
setAttr("tpl_context",content);框架

 

2、DataTable問題處理this

 

一、DataTables warning table id = messageList-ajax error,
For more information about this error,please see http://datatables.net/tn/7url

二、 1488164944826 Failed to load resource: the server responded with a status of 404 (Not Fou
   1488165197306 404 (Not Found)
解決 新建方法,不使用默認的ajax方法
.net

三、jquery.dataTables.js:48 Uncaught TypeError: Cannot read property 'length' of undefined
    解決
        http://stackoverflow.com/questions/39676723/jquery-datatables-min-js48-uncaught-typeerror-cannot-read-property-length-oform

四、 DataTables warning table id = messageList-Requested unknown parameter 0 for row 0
    解決:
    使用 空data 名
    或 mDataProp
    如:


    "sAjaxSource": url,
    "sAjaxDataProp": "",
    columns: [ server

    {"":"msg_id",} ,
    {"mDataProp":"msg_id",}utf-8

相關文章
相關標籤/搜索