nodeJs隨筆
回撥函式示例:
function isEvenOrOdd(number, callback) {
if(typeof number === 'number') {
if(number % 2) {
callback(null, '當前傳入的是奇數');
} else {
callback(null, '當前傳入的數是偶數');
}
} else {
callback(new Error('你傳入的不是數字'));
}
}
isEvenOrOdd(10, (error, data) => {
if(error) throw error;
console.log(data);
});
佔坑,直接開發微信公眾號,完了總結經驗。
相關文章
- Nodejs筆記NodeJS筆記
- 隨筆
- nodejs weixin 筆記NodeJS筆記
- MySQL 隨筆MySql
- 隨筆記筆記
- RabbitMQ隨筆MQ
- vuex隨筆Vue
- jQuery隨筆jQuery
- Fragment隨筆Fragment
- oracle 隨筆Oracle
- MySQL隨筆MySql
- 隨筆(二)
- 隨筆哦
- 隨筆1
- 隨筆3
- 隨筆2
- docker隨筆Docker
- 隨筆(1)
- vue隨筆Vue
- 真隨筆
- 翻譯隨筆(隨時更新)
- NodeJS學習筆記NodeJS筆記
- 隨堂筆記筆記
- IDE隨筆IDE
- 面試題隨筆面試題
- 工作感想隨筆
- CSS隨筆1CSS
- CSS隨筆2CSS
- 4.11隨筆
- 4.12隨筆
- 10.1隨筆
- 課後隨筆
- 天梯賽隨筆
- JS 列表 - 隨筆JS
- golang隨筆3Golang
- 數學隨筆
- nodejs筆記-模組機制NodeJS筆記
- flutter隨筆- Text and StyleFlutter