How to get products in JSON format from OpenCart using phonegap/jQueryMobile

前端 未结 2 1979
花落未央
花落未央 2021-01-16 07:17

Is there anyway, to fetch product catalog in JSON format from my OpenCart store, from a phonegap mobile application using Ajax, JavaScript/jQuery. Does OpenCart allow for su

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-16 08:06

    In catalog/controller/product/catalog.php before

    $this->response->setOutput($this->render());
    

    paste this code

    if (isset( $this->request->get['json'])) $this->response->setOutput(json_encode($this->data));  else    
    

    and go link http://opencart.examle/index.php?route=product/category&path=20&json

提交回复
热议问题