收到请求后,数据未显示在vue js组件中

时间:2019-12-11 19:54:13

标签: javascript laravel vue.js vuejs2 vue-component

你好。单击图库组件后,将显示该组件并在方法中获取请求,但不会显示图库数据:(
我上次没有这样的问题。也许是因为我的组件看起来像是modal。 我知道我的讲话很荒谬:/

$result->execute();
$results=$result->fetchAll(PDO::FETCH_ASSOC);

foreach ($results as $row) {
  if ($row['darsad_price_offer'] == '') {
    $prices = $row['price'];
  } else {
    $prices = $row['price_offer'];
  }
  $tedad = $row['tedadmahsol'];
  $pricerow2 = $prices * $tedad;
}
return [$results,$pricerow];

var pricerow=response[3];
$(".basketrows.activedel").find('.pricejson').html(pricerow);

0 个答案:

没有答案