Laravel Vue Spa 기본 구조 composer create-project --prefer-dist laravel/laravel {name} npm install npm run dev npm install vue npm install vue-router /route/web.php Route::get('/{any}', 'ViewsController@index')->where('any', '.*'); /app/http/controllers/ViewsController.php public function index() { return view('index'); } /resource/views/index.blade.php Vue SPA Demo /resource/js/app.js import Vue from 'vue' import VueRou.. 더보기 [최종] Jquery 다중 파일 업로드 미리보기 제공하기, 삭제, 순서변경, POST업로드 업로드 이미지 미리보기 Mustache 라는 스크립트 템플릿을 사용했습니다.필요하신 분은 구글에 Mustache.js을 검색해서 첨부해주세요. 더보기 jquery ajax function submitGet() { console.log("submitGet"); // url + get으로 보낼 데이터 var url = "/api/user/list/"+$("#input_id").val(); $.ajax({ type: "GET", url: url, success: function(result) { // 성공시 http status code 200 console.log(result); }, error: function(xhr, status, error) { // 실패시 http status code 200 이 아닌 경우 console.log(xhr); } }); } function submitPost() { console.log("submitPost"); // url var url.. 더보기 이전 1 2 3 4 5 6 7 ··· 13 다음