Java SpringBoot React Redux

一、字符串轉換相關 - React 前端JS部分前端

JSON.parse(JSON.stringify(copyRow));

二、字符串分隔相關,彈出confirm確認框,顯示換行信息 - React 前端JS部分java

let tip = [];
if(res.Message != null && res.Message != undefined){
tip =res.Message.split("&");
}
confirm({
okText: '肯定',
cancelText:'取消',
content:(<div>
{
tip.map((val,index)=>{
return <p style={{height:10}}>{val}</p>;
})
}
</div>),
onOk() {
doPost(para,btntype,dispatch);
},
onCancel() {},
});

三、React 前端Table控件 選擇事件spring

<Table>
        <rowSelection> = {{
            getCheckboxProps: record => ({
                disabled: 表達式,
                checked: (this.props.selectedRowKeys.indexOf(record.id)>-1?true:false),
                })
            }}
    </Table>

四、日期字段序列化時候出現的異常sql

org.springframework.dao.TransientDataAccessResourceException: 
Error attempting to get column 'pay_month' from result set.  
Cause: java.sql.SQLException: 
Zero date value prohibited; 
Zero date value prohibited; 
nested exception is java.sql.SQLException: Zero date value prohibited

五、redux調試工具redux-devtoolsredux

相關文章
相關標籤/搜索