doushou8299 2019-04-28 09:54
浏览 271
已采纳

Laravel 5.8 Restful API中的搜索功能

I'm implementing an API for front end and mobile apps now i'm working on search function where a user may type column phone number or any data i should be able to provide the data they request in a JSON format

i really don't know how to query based on the data they input, so for i did this

My Controller,

public function searchMember(Request $request)
{
    $data = $request->get('data');
    $member_info = Member::where('phone_number', 'like', "%{$data}%")
             ->get();

    return Response()->json([
        'status' => 'success',
        'data' => $member_info
    ], 200);
}

My Model,

class Member extends Model
{
    protected $fillable = ['name','member_id','service_id','batch_id','phone_number','office_name','designation','email','image','remember_token'];
}

And my routes

Route::get('search?data=phone_number', 'MemberController@searchMember');

When I run the API resource its return 404 | not found. I can not find the solution how to solve this. In postman I run the API something like that:

http://localhost:8000/api/v1/search?data=0179826****
  • 写回答

1条回答 默认 最新

  • dongzhong7299 2019-04-28 10:53
    关注

    I know you solved your problem but just in case some one wants to know the answer. the correct way to pass data in url in rout is:

    Route::get('search/{phone_number}', 'MemberController@searchMember');
    

    and in your controller get it like:

    public function searchMember(Request $request, $phone_number)
    

    then your url would look like:

    http://localhost:8000/api/v1/search/0179826****
    

    other than that if you are going to send variable through request you don't need to clarify it in rout. so the route would be like:

    Route::get('search', 'MemberController@searchMember');
    

    the controller and the url would be as you posted.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型