Ich habe ein Problem. Ich benutze Pusher für Echtzeit-Benachrichtigung und wenn es läuft, benachrichtigt es mich mit Noty, , aber ich möchte auch, dass es die Nummer der neuen Benachrichtigung in Echtzeit in meiner Ansicht ähnlich wie Facebook.Echtzeitdaten holen mit Laravel5.2, Vue.js und Pusher
<span class="label label-warning" v-show="new_count">@{{ new_count }}<!-- get the new notifications --></span>
Wie mache ich das?
dies sind meine Codes.
nav.js
new Vue({
el: '#nav',
data: {
new_count: 0
},
methods: {
getNewCount: function() {
this.$http.get('cron', function(new_count){
console.log(new_count);
this.new_count = new_count;
}.bind(this));
}
}
});
Cron Job Controller. Diese Methode wird jede Minute ausgeführt.
class CronJobController extends Controller
{
public function getIndex()
{
$old_fail_notification = FailNotification::where('seen', 0)->count();
$subjects_with_fail = Grade::where('grade', 'F')->groupBy('subject_id')->orderBy('subject_id', 'ASC')->get();
return response()->json(['new_count' => 2]); //send this to navbar
foreach ($subjects_with_fail as $subject) {
$subject_to_check = Grade::where('grade', 'F')->where('subject_id', $subject->subject_id)->where('reviewed', '0')->get(); //add if grade is IC or D
if (count($subject_to_check) >= 3) {
$failed = new FailNotification();
$failed->message = '[subject-'.$subject->subject_id.'] can now be opened.';
$failed->save();
foreach ($subject_to_check as $subject) {
$subject = Grade::find($subject->id);
$subject->reviewed = 1;
$subject->save();
}
}
}
$fail_notification = FailNotification::all()->count();
//UPDATE NOTIFICATION COUNT HERE REAL TIME USING AJAX
if ($fail_notification > $old_fail_notification) {
$new_notification_count = $fail_notification - $old_fail_notification;
Pusher::trigger('test-channel', 'test-event', [
'name' => 'You have a new',
'message' => 'Notification'
]);
Pusher::trigger('navbar-channel', 'navbar-event', [
'new_notif_count' => $new_notification_count,
]);
return response()->json(['new_count' => $new_notification_count]); //send this to navbar
}
}
}
bitte sagen, was ich falsch mache und wie mache ich es richtig.
benötigt Und wo abonnieren Sie den Stoßdienst? Wie unten gesagt, ist die get-Methode von vue.resource eine einzige Methode, und Sie müssen Pusher-Events ständig anhören. In den Dokumenten sagen sie, dass Sie das mit einer Susbcirbe-Methode tun? Wo ist das in deinem Vue-Code? –
danke! Ich studiere jetzt im Pusher-Service. –