я разрабатываю приложение с Laravel 5.1 и Angular.js и при попытке подключиться у меня появляется следующая ошибка:
XMLHttpRequest cannot load http://localhost:8000/university. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:9000' is therefore not allowed access.
У меня есть следующий код в угловых:
angular.module('clientApp')
.controller('UniversityCtrl', function ($scope, $resource) {
Universities = $resource("http://localhost:8000/university/:id",{id: "@id"});
$scope.Universities = Universities.query();
});
Мой взгляд:
<table>
<thead>
<tr>
<th>University</th>
<th>Address</th>
<th>Phone</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="Universities in University">
<td>{{University.name}}</td>
</tr>
</tbody>
</table>
и мой код Laravel:
public function index()
{
$universities = university::all();
return response()->json(
$universities->toArray()
);
}
Спасибо
Сингл Установить это пакет по barryvdh
Других решений пока нет …