我是laravel_5.3 + Angularjs.i中的新手我试图用角度http post发送一些数据。
$scope.close=function(){
var data1={
name:$scope.name,
price:$scope.price
}
$http({
method: "POST",
url: 'http://localhost/project/public/demo',
data: data1
}).success(function () {
console.log('true');
// $location.url("demo");
})
.error(function(){
console.log('false');
})
$log.info(data1);
}
我在这里调用laravel post方法演示是我的方法
Route::post('/demo', function (Request $request) {
$product=new product;
$product->name = $request->name;
$product->price = $request->price;
$product->image = 'gjgj';
$product->active=true;
$product->save();
return "saved success fully";
});
但是我没有在这个帖子方法中获取数据。 作为一个初学者,我没有在这里得到错误。 请帮我一些资源......