Basically I'm trying to make a popup using this ajax:
$.ajax({
type: 'GET'
url: 'news/read'
dataType: 'json'
cache: false
timeout: 10000
}).done (msg) ->
$("article#pop-read").empty().html msg.view
processing = false
window.history.pushState
path: msg.url
, "", msg.url
false
And I'm returning a view value and it's url with this:
$data = json_encode(array(
'view' => View::make('layouts.read'),
'url' => 'news/read/2013/11/24/test-title-seperate-with-dash'
));
return $data;
This all works really well except that I can't get the view value from laravel (it returns Object object
in javascript). But it returns nicely if I directly write it like return View::make('layouts.read')
. Why is that?
Additionally (don't have to answer, not primary question), the back button on my browser doesn't work when I use pushState
, is it a bug?
Best Solution
You may try this
Also, you can use
Also,
Laravel
providesResponse::json()
method for same reason (instead ofjson_encode
).