파일 다운로드 횟수 증가

1057 단어
보기: target = "blank "그 href 는 링크 문 서 를 어디서 열 어야 하 는 지 를 규정 하 는 것 입 니 다. target =" download "라면 href 는 다운 로드 된 하이퍼링크 목 표를 규정 하 는 것 입 니 다.다운로드 하 다.
js:
$(".btn-play").click(function() {
      var id = $(this).data('id');
      $.get('/w/subject/download_count'+'/'+id);
    })

경로: Route::get('/download_count/{id}', 'SubjectController@getDownloadCount')->name('get_download_count');컨트롤 러 방법:
public function getDownloadCount(Request $request, $id)
    {
        Subject::incrementDownloadCountById($id);
        return $this->responseJSON([], 0, 'ok');
    }

모델: 데이터 시트 에서 download count 필드 자동 증가
public static function incrementDownloadCountById($id)
    {
        return self::where('id', $id)->increment('download_count');
    }

좋은 웹페이지 즐겨찾기