pusher+php+jquery+ajaxでリアルタイムミュージックプレイヤーを作ろうとしています。
ユーザーが #play ボタンをクリックすると、ajax 投稿が php スクリプトに送信され、php スクリプトはデータを特定のチャネルにプッシュし、json でエンコードされたデータをユーザーに送り返します。
jquery は、php スクリプトによって返された ajax データを解析します。
racion が "true" の場合は曲を再生し、"false" の場合は曲を停止します。
しかし、actionCall
関数 P/SI に対して定義されていないデータを取得し続け、 myjquery script 、 pusher script 、 soundmanager2 script を HTML ページに含めました。
私のスクリプトは次のとおりです。
jQuery:
function ajaxCall(ajax_url, ajax_data, successCallback) {
$.ajax({
type: "POST",
url: ajax_url,
dataType: "json",
data: ajax_data,
time: 10,
success: function(msg) {
if (msg.success) {
successCallback(msg);
} else {
alert(msg.errormsg);
}
},
error: function(msg) {}
});
}
function actionCall(data) {
if (data.raction == 'true') {
MP3.play();
}
else {
MP3.stop();
}
}
$(document).ready(function() {
pusher = new Pusher('i have added my app key');
Pusher.channel_auth_endpoint = 'pusher_auth.php';
nettuts_channel = pusher.subscribe('presence-music');
pusher.connection.bind('connected', function() {
nettuts_channel.bind('new_action', function(data) {
actionCall(data);
});
});
soundManager.url = 'swf';
soundManager.flashVersion = 8;
var MP3;
var currentSong = 0;
soundManager.onready(function() {
MP3 = soundManager.createSound({
id: 'sound' + currentSong,
url: "mp3/song.mp3"
});
});
$('#play').click(function() {
ajaxCall('player.php', {
'action': 'true'
}, function(msg) {
player.php
actionCall(msg.data);
});
});
$("#stop").click(function() {
ajaxCall('player.php', {
'action': 'false'
}, function(msg) {
player.php
actionCall(msg.data);
});
});
});
PHP:
<?php
session_start();
include_once 'Pusher.php';
$pusher = new Pusher(
'i have added my app key', //APP KEY
'i have added my app secret', //APP SECRET
'added my app id' //APP ID
);
$action = $_POST['action'];
$pusher->trigger(
'presence-music', //the channel
'new_action', //the event
array('raction' => $action) //the data to send
);
echo json_encode(array(
'raction' => $action,
'success' => true
));
exit();
?>
PHP スクリプトは動作し、以下を返します。
{"raction":"true","success":true}
問題はこのエラーです(jquery内):
data is undefined
if(data.raction == 'true'){