我试图找到一个关于如何将Laravel与Angular 2一起使用的具体示例。 尝试使用谷歌,但没有运气。另外,我想知道何时使用Component annotation对象键templateUrl,它是否可以接受php扩展而不是html。
答案 0 :(得分:0)
似乎一致认为最好使用Angular 2作为独立的前端,并使Laravel充当API。
那就是说,我确实发现this guide肯定会将两者联系起来。我不确定它是否会回答您的具体问题,但它可能会帮助您开始。祝你好运!
答案 1 :(得分:0)
使用角度设置前侧的所有路由器。
此路由适用于Angular2,它应该位于所有其他后端路由之后 只需将其保留在底部(laravel5.3中的laravel5.2 web.php 中的 route.php )
Route::get('/{any}', function ($any) {
return view('welcome');
})->where('any', '.*');
答案 2 :(得分:-2)
$scope.refresh = function () {
$http({
url: '',
method: "GET"
}).success(function (data) {
$scope.trans = data.transactions;
console.log($scope.trans);
}).error(function (data) {
console.log('Error');
});
}
$scope.refresh(); // We call the function on initialization to load the feed.