2019-05-01から1ヶ月間の記事一覧

vue-router In-Component Guards

vue-router@3.0.6 beforeRouterEnter(to, from, next) { next(vm => { console.log(vm) vm <<<< router-viewを使っている場合、最終的にrouter-viewで表示されるcomponentのインスタンス }) 従って、router-view と In-Component Guardsを使えば別のcomponen…

Laravel formData validation

formData に image を入れてデータを送る場合 @FrontEnd const formData = new FormData() formData.append("image", BLOB_IMAGE_DATA) axios({ method: 'post', url: 'SERVER_URL', data: formData, config: { headers: {'Content-Type': 'multipart/form-d…