SQLSTATE [42S22]: Столбец не найден: 1054 Неизвестный столбец '1' в 'предложении порядка' (SQL: выбрать * из порядка `item` на` 1` asc limit 10 offset 0) - PullRequest
0 голосов
/ 06 октября 2018

Я хочу добавить jqgrid в свой клинок ларавеллы;однако существует проблема «SQLSTATE [42S22]: столбец не найден: 1054 Неизвестный столбец« 1 »в« предложении порядка »(SQL: выбрать * из item порядок по 1 asc, предел 10, смещение 0)».Я не могу понять, почему.

Мой код ниже:

1.in Blade:

$(document).ready(function () {
    $("#stock_lost").jqGrid({ 
        url:'{{ URL::route('accountData') }}',
        datatype: "json",
        colNames:['id','type','model', 'price', 'currency','123'], 
        colModel:[ 
        {name:'id',index:'id', width:80,key:true,editable:false,hidden:true}, 
        {name:'type',index:'type', width:80,align:'center',editable: true}, 
        {name:'model',index:'model', width:100,align:'center',editable:true}, 
        {name:'price',index:'price', width:80, align:'center',editable:true}, 
        {name:'currency',index:'currency', width:80, align:'center',editable:true},    
        {name:'storage_location',index:'storage_location', width:80, align:'center',editable:true}
        ],
        //multiselect: true, 
        //caption: "Manipulating Array Data",
        rowNum:10,     
        rowList:[10,20,30,40,50],     
        pager:'#lost_pager',           
        autowidth:true,     
        height: "auto",     
        viewrecords:true,     
        multiselectWidth: 25,    
        sortable:true,     
        sortname:'type',    
        sortorder:'asc',     
        rownumbers:true,  
        scrollOffset:0, 
        cellEdit: false,
    });

   $('#stock_lost').navGrid("#lost_pager",
        // the buttons to appear on the toolbar of the grid
        { edit: true, add: true, del: true, refresh: true, view: false, position: "left", cloneToTop: false },

    );
});

</script>

2.in Controller

 public function accountData(Request $request){
        $page = $request->input('page','1');
        $limit = $request->input('limit','10');
        $sidx = $request->input('sidx','1');
        $sord = $request->input('sord','asc');
        $count = item::count();
    // calculate the total pages for the query 
    if( $count > 0 && $limit > 0) {
        $total_pages = ceil($count/$limit);
    }
    else { 
        $total_pages = 0;
    } 
    if ($page > $total_pages)
        $page=$total_pages;
        $start = $limit*$page - $limit;
    if($start <0) 
        $start = 0; 

    $results = DB::table('item')
                ->orderBy($sidx, $sord)
                ->skip($start)->take($limit)
                ->get();
    $response= new \ stdClass();
    $response->page = $page;
    $response->total = $total_pages;
    $response->records = $count;    
    $i=0;

    foreach ($results as $result) {

        $response->rows[$i]['id']=$i+1;
        $response->rows[$i]['cell']=array($result->id, $result->type,$result->model, $result->price, $result->currency, $result->storage_location);
        $i++;
    }
    return json_encode($response);

}

3.in web

 Route::get('/lost','StockController@accountData')->name('accountData');

4.in Модель таблицы 'item'

namespace App;

use Illuminate\Database\Eloquent\Model;

class item extends Model
{
    protected $table='item';
    protected $primaryKey='id';
    protected $fillable=[
        "type",
        "model",
        "price",
        "currency",
        "storage_location",
    ];
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...