我有一个视图,该视图将显示数据库中的重要任务列表。我在控制器中有一个函数,可将数据收集返回到视图。
我的控制器功能是
public function list()
{
$tasks= Task::where('category','1')->get();
//category is 1 when the task is important
return view('important', compact('tasks'));
}
我的看法就像
<ul>
@foreach ($tasks as $task)
<li> {{$task->body}}</li>
@endforeach
</ul>
我实际上要做的是每当一个新的重要任务被添加到数据库中时就调用list函数。我该怎么办?
答案 0 :(得分:3)
在您的web.php中
Route::get('/tasks','TasksController@list')->name('get_tasks');
在控制器内部:
use Illuminate\Http\Request;
public function list(Request $request)
{
$tasks= Task::where('category','1')->get();
if($request->ajax()){
return response()->json(array('tasks'=>$tasks));
}
return view('important', compact('tasks'));
}
在刀片视图内:
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
$(document).ready(function(){
setInterval(function(){
$.ajax({
url:'/tasks',
type:'GET',
dataType:'json',
success:function(response){
if(response.tasks.length>0){
var tasks ='';
for(var i=0;i<response.tasks.length;i++){
tasks=tasks+'<li>'+response.tasks[i]['body']+'</li>';
}
$('#tasklist').empty();
$('#tasklist').append(tasks);
}
},error:function(err){
}
})
}, 5000);
});
</script>
<ul id="tasklist">
@foreach ($tasks as $task)
<li> {{$task->body}}</li>
@endforeach
</ul>
答案 1 :(得分:0)
要实现这种设置,您可以使用Pusher或任何其他类似的提供商,一旦注册了pusher,您就可以每天免费发送200k通知,您可以在登录pusher后检查限制。在我们继续之前,请安装pusher的官方php软件包
composer require pusher/pusher-php-server
现在在您要在数据库中插入数据的控制器/模型中,从推送器仪表板上获取app_id
,key
,secret
和cluster
,添加以下代码< / p>
//You will get cluster name from pusher.com replace it below
$options = ['cluster' => 'mt1', 'encrypted' => true];
//Replace your key, app_id and secret in the following lines
$pusher = new Pusher(
'key',
'secret',
'app_id',
$options
);
//this could be a single line of message or a json encoded array, in your case you want to pass some data to display in table I assume you have an array
$message= json_encode(['name' => 'John doe', 'age' => 42, 'etc' => 'etc']);
//Send a message to users channel with an event name of users-list. Please mind this channel name and event name could be anything but it should match that with your view
$pusher->trigger('users', 'users-list', $message);
现在在您的视图中,</body>
标记之前粘贴以下代码
<!-- Incldue Pusher Js -->
<script src="https://js.pusher.com/4.2/pusher.min.js"></script>
<script>
//Remember to replace key and cluster with the credentials that you have got from pusher.
var pusher = new Pusher('key', {
cluster: 'mt1',
encrypted: true
});
//In case you have decided to use a different channel and event name in your controller then change it here to match with the one that you have used
var channel = pusher.subscribe('users');
channel.bind('users-list', function(message) {
//if you will console.log(message) at this point you will see the data
//that was sent from your controller is available here please consume as you may like
alert(message);
});
</script>