...
|
...
|
@@ -237,10 +237,10 @@ class SearchController extends AbstractAction |
|
|
$data = array();
|
|
|
|
|
|
do {
|
|
|
/* 判断是不是AJAX请求 */
|
|
|
if (!$this->isAjax()) {
|
|
|
break;
|
|
|
}
|
|
|
/* 跨域导致 Ajax 丢失数据 */
|
|
|
// if (!$this->isAjax()) {
|
|
|
// break;
|
|
|
// }
|
|
|
|
|
|
/* 过滤请求参数 */
|
|
|
$condition = filter_input_array(INPUT_GET, array(
|
...
|
...
|
@@ -400,8 +400,8 @@ class SearchController extends AbstractAction |
|
|
{
|
|
|
header('Access-Control-Allow-Origin:*');
|
|
|
$data = array();
|
|
|
|
|
|
if ($this->isAjax()) {
|
|
|
// 跨域导致 Ajax 丢失数据
|
|
|
// if ($this->isAjax()) {
|
|
|
// 过滤请求参数
|
|
|
$condition = filter_input_array(INPUT_GET, array(
|
|
|
'query' => FILTER_DEFAULT,
|
...
|
...
|
@@ -466,7 +466,7 @@ class SearchController extends AbstractAction |
|
|
|
|
|
// 区别各种列表页面的筛选数据
|
|
|
$data = Product\SearchModel::getFilterData($condition);
|
|
|
}
|
|
|
// }
|
|
|
|
|
|
if (empty($data)) {
|
|
|
echo ' ';
|
...
|
...
|
|