これが指摘されると、私は完全なばかのように感じるでしょうが、問題がどこから来ているのか理解できない構文エラーがあります。これが私のコードです(最後の行にエラーが表示されますが、それが原因であるとは思えません):
// handle GCM notifications for Android
function onNotificationGCM(e) {
switch( e.event )
{
case 'registered':
if ( e.regid.length > 0 )
{
// Your GCM push server needs to know the regID before it can push to this device
// here is where you might want to send it the regID for later use.
PushWoosh.appCode = "33F93-5013B";
PushWoosh.register(e.regid, function(data) {
alert("PushWoosh register success: " + JSON.stringify(data));
}, function(errorregistration) {
alert("Couldn't register with PushWoosh" + errorregistration);
});
}
break;
みんなありがとう、私はここでばかのように感じていて、イライラする一日を過ごしました.