产品具有一对多关系,'productbrand',表productbrand和productbrand具有一对一的关系,'品牌',与表品牌。表品牌有一个专栏,'品牌'。我可以访问该产品的品牌。可以正确访问所有其他类别,用户名等。
public function show(Request $request)
{
if($request->ajax())
{
$id = $request->id;
if($id)
{
$show = Product::where(['product_id'=>$id])->first();
$category = $show->category->category;
$username = $show->user->username;
$getbrands = $show->productbrand;
foreach($getbrands as $getbrand)
{
$brand=$getbrand->brand->brand;
}
if($show)
{
echo json_encode(array('status' => TRUE, 'show' => $show, 'username' => $username, 'category' => $category, 'brand' => $brand)); die;
}
}
}
echo json_encode(FALSE);die;
}
Ajax和jQuery:
$.ajax({
type: "POST",
url: "{{url('/product/show')}}",
data: {id:id},
success: function (data) {
var res = $.parseJSON(data);
if(res.status == true)
{
var result = 'Category: ' + res.category + '<br>' +
'Product by: ' + res.username + '<br>' +
'Brands: ' + res.brand + '<br>' +
'Price: ' + res.show.price + '<br>' +
'Price type: ' + res.show.price_type + '<br>' +
'Product Views: ' + res.show.views + '<br>';
$('#result').html(result);
}
}
});
这样我只能得到一个品牌。我也尝试过以下方法,但失败了。
在控制器中:
$getbrands = $show->productbrand;
echo json_encode(array('status' => TRUE, 'show' => $show, 'username' => $username, 'category' => $category, 'getbrands' => $getbrands));
在Ajax中:
for(var i=0; i<res.getbrands.length; i++)
{
var brands=res.getbrands[i].brand.brand; //First 'brand' is relation and second is the brand I am trying to access
}
答案 0 :(得分:8)
为什么要声明所有这些变量:
$category = $show->category->category;
$username = $show->user->username;
$getbrands = $show->productbrand;
如果类别,用户,产品品牌和品牌是与产品的关系模型,并从类别,用户的用户名等获取类别
而是与'with'保持关系;
public function show(Request $request)
{
if($request->ajax())
{
$id = $request->id;
if($id)
{
$show = Product::where(['product_id'=>$id])->with('category')
->with('user')
->with('productbrand.brand') // product has onetomany relation 'productbrand' with table productbrand and productbrand has onetoone relation 'brand' with table brand
->first();
if($show)
{
echo json_encode(array('status' => TRUE, 'show'=>$show)); die;
}
}
}
echo json_encode(FALSE);die;
在JavaScript中:
if(res.status == true)
{
var result = 'Category: ' + res.show.category.category + '<br>' +
'Product by: ' + res.show.user.username + '<br>' +
'Price: ' + res.show.price + '<br>' +
'Price type: ' + res.show.price_type + '<br>' +
'Product Views: ' + res.show.views + '<br>';
$('#result').html(result);
}
}
});
产品与表productbrand和productbrand之间存在关联'productbrand'与表品牌有关系的'品牌'。表品牌有一个专栏'品牌'。并且我无法访问该产品的品牌。访问这样的品牌。
var result = 'Brands: ';
for(var i=0; i<res.show.productbrand.length; i++)
{
result += res.show.productbrand[i].brand.brand;
}
答案 1 :(得分:3)
使用你的第一种方式。
将$brand=$getbrand->brand->brand;
更改为$brand[] = $getbrand->brand->brand;
然后在js中你可以浏览这样的品牌:
for(var i=0; i < res.brand.length; i++)
{
console.log(brand[i]);
}
但是,获得这样的品牌会进行大量的数据库查询。
相反,您可以使用预先加载。
像这样:
$show = Product::with('productbrand.brand')->where(['product_id'=>$id])->first();
$brand = $show->productbrand->pluck('brand')->collapse();
并在js中以与以前相同的方式访问它。
PS:我假设您正在使用laravel 5.2。
答案 2 :(得分:2)
我认为您应该创建一个路由并使用AJAX来获取所需的数据。 一旦将数据传递给javascript使用的DOM,它就不知道你在Laravel中定义的对象关系。