JavaScript Promise then chainingができない原因と解決方法
JavaScriptで非同期処理を扱う際、Promiseは非常に重要な機能です。しかし、初心者が最初につまずくのがthen chaining(チェーン処理)がうまくいかないというトラブルです。本記事では、その原因から解決方法まで、わかりやすく解説します。
Promise then chainingができない主な原因
1. Promiseを返していない
then chainingが動作しないもっとも多い原因は、then内の処理がPromiseを返していないことです。then chainingを続けるためには、各thenコールバック関数が必ずPromiseを返す必要があります。
Promiseチェーンは、前の処理の結果を次の処理に渡す仕組みですが、Promiseが返されないと、チェーンが途切れてしまいます。
2. 非同期処理の完了を待たずに次の処理に進む
非同期処理(APIリクエストなど)が完了する前に、次の処理が実行されてしまう場合があります。これは、then内で新しい非同期処理を開始したのに、その完了を待たずにPromiseを返さないためです。
3. エラーハンドリングがない、または不適切
catchメソッドを使わない、または不適切に使用すると、エラーが発生した時点でチェーンが途切れることがあります。
4. thisのバインディング問題
アロー関数ではなく通常の関数を使用した場合、thisの参照先がズレることがあり、エラーが発生することもあります。
Promise then chainingの解決手順
ステップ1: Promiseの基本を理解する
まず、Promiseの基本的な構造を理解することが重要です。Promiseは「待つ」ための仕組みで、resolve(成功)またはreject(失敗)のいずれかの状態に終わります。
ステップ2: 各thenで必ずPromiseを返す
チェーン処理を続けるには、each then callback must return a Promiseが基本ルールです。値を返すだけでなく、その値をPromiseでラップするか、元々Promiseを返す関数を呼び出す必要があります。
ステップ3: catchでエラーハンドリングを行う
チェーンの最後に必ずcatchメソッドを追加して、エラーを適切に処理します。
ステップ4: 戻り値を確認する
開発者ツールのコンソールで、各処理の戻り値がPromiseであることを確認します。
コード例:正しいPromise then chaining
よくある間違いの例
// ❌ 間違い:Promiseを返していない
fetch('https://api.example.com/user/1')
.then(response => response.json())
.then(data => {
console.log(data);
// ここで何も返していない → chainingが途切れる
})
.then(result => {
// resultはundefinedになる
console.log('Next step:', result);
});
正しい解決例
// ✅ 正解:Promiseを返している
fetch('https://api.example.com/user/1')
.then(response => response.json())
.then(data => {
console.log('User data:', data);
// 次のPromiseを返す
return fetch(`https://api.example.com/posts/${data.id}`);
})
.then(response => response.json())
.then(posts => {
console.log('User posts:', posts);
// 値を返すときはPromiseでラップする
return Promise.resolve(posts);
})
.catch(error => {
console.error('エラーが発生しました:', error);
});
複数の非同期処理を順序立てて実行する例
// ユーザー情報を取得してから、そのユーザーの投稿を取得する
function getUserAndPosts(userId) {
return fetch(`https://api.example.com/users/${userId}`)
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then(user => {
console.log('User:', user);
// ユーザーの投稿を取得するPromiseを返す
return fetch(`https://api.example.com/users/${user.id}/posts`)
.then(response => response.json())
.then(posts => {
// ユーザーと投稿の両方を返す
return { user, posts };
});
})
.catch(error => {
console.error('データ取得エラー:', error);
throw error; // エラーをさらに上流に伝播させる
});
}
// 使用例
getUserAndPosts(1)
.then(result => {
console.log('Complete data:', result);
})
.catch(error => {
console.error('最終的なエラー処理:', error);
});
値を変換する場合の例
// ❌ 間違い:値を直接返すと、次のthenでPromiseが渡されない
Promise.resolve(10)
.then(num => {
return num * 2; // 20を返す
})
.then(result => {
console.log(result); // 20と出力される
return result + 5; // 25を返す
})
.then(final => {
console.log(final); // 25と出力される
// ここで非同期処理が必要な場合は?
});
// ✅ 正解:非同期処理が必要な場合はPromiseで明示的にラップする
Promise.resolve(10)
.then(num => {
return Promise.resolve(num * 2); // 明示的にPromiseでラップ
})
.then(result => {
console.log(result); // 20と出力される
// 非同期処理を実行
return new Promise((resolve) => {
setTimeout(() => {
resolve(result + 5);
}, 1000);
});
})
.then(final => {
console.log(final); // 1秒後に25と出力される
});
複数の非同期処理を並列実行する例
// Promise.all を使って複数のPromiseを並列実行
function getMultipleData() {
const userPromise = fetch('https://api.example.com/user')
.then(response => response.json());
const settingsPromise = fetch('https://api.example.com/settings')
.then(response => response.json());
const notificationsPromise = fetch('https://api.example.com/notifications')
.then(response => response.json());
// すべてのPromiseが完了するまで待つ
return Promise.all([userPromise, settingsPromise, notificationsPromise])
.then(([user, settings, notifications]) => {
return {
user,
settings,
notifications
};
});
}
getMultipleData()
.then(result => {
console.log('All data loaded:', result);
})
.catch(error => {
console.error('データ取得エラー:', error);
});
よくある間違いと対策
間違い1:thenコールバック内で値を返さない
// ❌ 間違い
fetch('/api/data')
.then(response => response.json())
.then(data => {
const processed = data.map(item => item.name);
// 返していない!
})
.then(result => {
console.log(result); // undefined
});
// ✅ 正解
fetch('/api/data')
.then(response => response.json())
.then(data => {
const processed = data.map(item => item.name);
return processed; // 忘れずに返す
})
.then(result => {
console.log(result); // 正しく処理された配列が表示される
});
間違い2:ネストが深くなる(Callback Hell)
// ❌ 悪い例:ネストが深い
fetch('/api/user')
.then(response => response.json())
.then(user => {
fetch('/api/user/' + user.id + '/posts')
.then(response => response.json())
.then(posts => {
fetch('/api/posts/' + posts[0].id + '/comments')
.then(response => response.json())
.then(comments => {
console.log(comments);
});
});
});
// ✅ 良い例:フラットな構造
fetch('/api/user')
.then(response => response.json())
.then(user => fetch('/api/user/' + user.id + '/posts'))
.then(response => response.json())
.then(posts => fetch('/api/posts/' + posts[0].id + '/comments'))
.then(response => response.json())
.then(comments => console.log(comments));
間違い3:catchを省略する
// ❌ 間違い:catchがない
fetch('/api/data')
.then(response => response.json())
.then(data => console.log(data));
// エラーが発生しても捕捉されない
// ✅ 正解:必ずcatchを付ける
fetch('/api/data')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => {
console.error('Error:', error);
});
間freguesia い4:thisのバインディング問題
// ❌ 間違い:thisが予期しない値になる可能性
class DataManager {
constructor() {
this.apiUrl = 'https://api.example.com';
}
fetchData() {
fetch(this.apiUrl + '/data')
.then(function(response) {
console.log(this); // undefined または window
return response.json();
});
}
}
// ✅ 正解:アロー関数を使用
class DataManager {
constructor() {
this.apiUrl = 'https://api.example.com';
}
fetchData() {
fetch(this.apiUrl + '/data')
.then((response) => { // アロー関数を使用
console.log(this); // DataManagerのインスタンス
return response.json();
});
}
}
デバッグのコツ
コンソールで各ステップを確認する
fetch('/api/data')
.then(response => {
console.log('Step 1 - Response:', response);
return response.json();
})
.then(data => {
console.log('Step 2 - Data:', data);
return data;
})
.then(result => {
console.log('Step 3 - Result:', result);
})
.catch(error => {
console.error('Error in chain:', error);
});
Promise.allSettledで全結果を確認
// すべてのPromiseの結果を確認(成功/失敗を問わず)
Promise.allSettled([
fetch('/api/1').then(r => r.json()),
fetch('/api/2').then(r => r.json()),
fetch('/api/3').then(r => r.json())
])
.then(results => {
results.forEach((result, index) => {
if (result.status === 'fulfilled') {
console.log(`Promise ${index} succeeded:`, result.value);
} else {
console.log(`Promise ${index} failed:`, result.reason);
}
});
});
async/awaitでのモダンなアプローチ
Promise then chainingが複雑になった場合は、async/awaitを使うことをお勧めします。これはPromiseベースですが、記述がより直感的になります。
// async/awaitを使った書き方
async function getUserAndPosts(userId) {
try {
const userResponse = await fetch(`https://api.example.com/users/${userId}`);
if (!userResponse.ok) {
throw new Error(`HTTP error! status: ${userResponse.status}`);
}
const user = await userResponse.json();
const postsResponse = await fetch(`https://api.example.com/users/${user.id}/posts`);
const posts = await postsResponse.json();
return { user, posts };
} catch (error) {
console.error('データ取得エラー:', error);
throw error;
}
}
// 使用例
getUserAndPosts(1)
.then(result => {
console.log('Complete data:', result);
})
.catch(error => {
console.error('最終的なエラー処理:', error);
});
まとめ
Promise then chainingができない原因は、ほぼすべての場合が「Promiseが返されていない」ことです。以下のポイントを押さえることで、ほとんどのトラブルは解決できます:
- 各thenコールバック内で必ずPromiseを返す – これが最も重要
- 新しい非同期処理を開始する場合は、そのPromiseを返す
- 値を変換する場合も、必要に応じてPromiseでラップする
- catchメソッドで必ずエラーハンドリングを行う
- 複雑な場合はasync/awaitの使用を検討する
- 開発者ツールのコンソールで各ステップを確認する
これらの基本を理解することで、JavaScriptの非同期処理がより簡単に、そして安全に実装できるようになります。初心者の方も、チェーンが途切れたときはまずこのポイントをチェックしてみてください。きっと問題が解決するはずです。

