Telerik Kendo Grid PHP在firefox中正常工作,但是在chrome和ie中显示任何数据

时间:2015-11-19 08:05:13

标签: kendo-ui grid

counting

我使用Above php代码通过以下代码将json数据从路由数据路径获取到products.php:

$transport = new \Kendo\Data\DataSourceTransport();

$read = new \Kendo\Data\DataSourceTransportRead();

$read->url('data')
 ->contentType('application/json')
 ->type('POST');

$transport ->read($read)
      ->parameterMap('function(data) {
          return kendo.stringify(data);
      }');

在Firefox中,每件事情都可以,json数据显示网格,但chrome和ient显示任何数据。

什么是问题?

1 个答案:

答案 0 :(得分:0)

问题是路由$ read-> url('data')

我用了     返回视图('sample'); 在路线和这个工作在Firefox,但不适用于chrome

是的     return response() - > view('sample');