laravel api处理程序如何通过子列进行排序

时间:2015-09-09 13:29:10

标签: laravel-4

我正在使用laravel API handler 我想知道如何通过'with'table

中的列发送请求

这是我的后端代码

xfoil_path=os.getcwd()+'/xfoil.exe'
Xfoil = Popen(xfoil_path, shell=True, stdin=PIPE, stdout=None, stderr=None, creationflags=0)
for i in commands:
    print '\nExecuting:', i
    #stdin.write returns None if write is blocked and that seems to be the case here
    Xfoil.stdin.write(i)
    Xfoil.wait()
    #print Xfoil.stdin.write(i)

和request-url

http://localhost/public/api/v1/product/view/0?&_offset=0&_limit=10&_config=meta-total-count,meta-filter-count&_sort=-category.category_name

0 个答案:

没有答案