我想将特定的代码块保存在另一个文件中,因此我将在ajax中调用此代码块 我的控制器
public function Test(Request $request) {
$data['Test'] = Patient::Test(Auth::user()->userRef);
return view('test',$data);
}
Index.php
$(document).ready(function(){
$.ajax({
url: '{{url('test')}}',
context: document.body,
success: function(){
$('#refresh_rating').html();
alert("done");
}
});
});
test.php
<div id="results">Hai</div>
但是test.php没有在Index.php页面中调用