https://www.taishinbank.com.tw/TS/TS02/TS0202/TS020201/TS02020101/TSB0434262

計息方式


 


(1)計息方式為每日計息,採單利
(2)按本行二年期定期儲蓄存款利率機動
(3)每半年給息一次


 


帳戶注意事項


 


(1)本帳戶為新臺幣活期儲蓄存款帳戶,不具有綜合存款性質(即不得辦理質借或透支或授扣),且本帳戶亦不得設定為薪資轉帳戶。
(2)申請人嗣後若因調職、離職或退休等原因,有不符合本帳戶優惠資格之情事,本行得逕終止本帳戶之利率優惠,終止後利率改依 本行新臺幣活期儲蓄存款牌告利率計息。
(3)本帳戶每月最高儲蓄額:職員新臺幣1萬元、工友新臺幣5000元。
(4)本帳戶優惠存款利率限額為職員最高新臺幣70萬元,工友最高新臺幣35萬元,超逾限額部分將依本行新臺幣活期儲蓄存款牌告利率計息。本行就上述利息將依所得稅法規定代為扣繳利息所得稅。
(5)本行保留接受暨審核申請人申辦本帳戶之權利。


dizzy03 發表在 痞客邦 留言(0) 人氣()


最近在寫react native,一直碰到"Warning: Can't call setState on a component that is not yet mounted."這個warning
實在搞不懂怎麼解決,直到找到這篇文章,明白說明react程式甚麼時候會執行甚麼function。
 
簡單說,在constructor只能定義state,並給初始值,但不能setState

dizzy03 發表在 痞客邦 留言(0) 人氣()

昨天使用button onPress屬性呼叫function test做別的事
onPress={this.test}
一開始function test是寫成一般呼叫形式,function test(){ ... }
然後function test裏頭用到別的function都會使用this.加上function name,this.otherfunction();

dizzy03 發表在 痞客邦 留言(0) 人氣()

intro
轉自 https://ithelp.ithome.com.tw/articles/10185221
--
本章的目標是對箭頭函式提供一些較為全面性的介紹,除了基本的語法之外,也補充了很多React搭配使用時的實例,此外也提供撰寫的風格建議。當然,箭頭函式並不光只是語法簡短而已,它有一些與原來JavaScript中函式不同的設計,你可以把它當成是原本(傳統)的函式的改進版本。

dizzy03 發表在 痞客邦 留言(0) 人氣()


轉自 https://pjchender.blogspot.com/2017/01/es6-arrow-function.html
--
 

dizzy03 發表在 痞客邦 留言(0) 人氣()

Q: 使用native base的segment元件,想要讓他動態依照點擊哪個按鈕就設那個按鈕的active屬性為true。
A:
1. 在state設定一個變數,用來控制目前要設哪一個button為active
2. 在segment下面每個button的active都加上判斷state的變數內容,符合才設為ture

dizzy03 發表在 痞客邦 留言(0) 人氣()

轉自 www.ucamc.com/e-learning/javascript/276-react-js-search搜尋功能使用過濾迴圈filter.html
--
 
filter函數特性:

dizzy03 發表在 痞客邦 留言(0) 人氣()


onChangeText is basically a simplified version of onChange, so you can easily use it, without the hassle of going through event.target.value to get changed value.
So, when should you use onChange and when onChangeText?
If you have simple form with few textinputs, or simple logic, you can go straight away and use onChangeText
<TextInput value={this.state.name} onChangeText={(text) => this.setState({name: text})}>

If you have more complicated forms and/or you have more logic in handling data (like handling text differently from number) when user changes input, then you are better of with onChange, because it gives you more flexibility. For example:
handleChange(event) {
const {name, type, value} = event.nativeEvent;
let processedData = value;
if(type==='text') {
processedData = value.toUpperCase();
} else if (type==='number') {
processedData = value * 2;
}
this.setState({[name]: processedData})
}
<TextInput name="username" type="text" value={this.state.username} onChange={this.handleChange}}>
<TextInput name="password" type="number" value={this.state.password} onChange={this.handleChange}}>

dizzy03 發表在 痞客邦 留言(0) 人氣()

示例圖
轉自 bbs.reactnative.cn/topic/444/同时兼容ios与android的toast组件
--
給大家安利一款可以在iOS和Android上通用的Toast組件: react-native-root-toast
現在開源的Toast組件一大堆,為什麼要選用這個呢?原因如下:

dizzy03 發表在 痞客邦 留言(0) 人氣()

96
轉自 https://www.jianshu.com/p/e9144208f18f
--
 

dizzy03 發表在 痞客邦 留言(0) 人氣()

遊戲本體
https://store.steampowered.com/app/1097880/Super_Naughty_Maid_2/
 

dizzy03 發表在 痞客邦 留言(0) 人氣()

問題:
使用react-navigation接收navigation帶回來的參數,並且在navigationOptions中定義header區塊按鈕onPress時呼叫自訂function時,會直接出現"function is undefined"的錯誤訊息。
EX:
static navigationOptions = ({ navigation }) => ({
      headerRight: <RightButton onPress={() => this.removeVehicle()} />
})

dizzy03 發表在 痞客邦 留言(0) 人氣()

Blog Stats
⚠️

成人內容提醒

本部落格內容僅限年滿十八歲者瀏覽。
若您未滿十八歲,請立即離開。

已滿十八歲者,亦請勿將內容提供給未成年人士。