搭建开发环境
在华为手机上运行
- 在开发人员调试,点击恢复默认设置,再打开USB调试。运行
adb devices
查看连接情况。
Vue.js + Vuex - User Registration and Login Tutorial & Example
Tutorial built with Vue.js 2.5.16 + Vuex 3.0.1 and Webpack 4.16. In this tutorial we’ll go through an example of how to build a simple user registration and login system using Vue.js + Vuex and webpack 4.16.
The tutorial project is available on GitHub.
Building a Single-Page Application with Symfony 4, Vue.js, Vue Router, Vuex and Axios
With Symfony, I used to build my web applications in a traditional way: the framework handles everything, from the routing to the page rendering. However nowadays web applications have complex user interactions and the previous approach does not fit well for such cases. That’s where single-page application architecture comes to the rescue.
本文我们将创建一个基础的 Vue.js,从而学会构建 Todo App 以有助于践学 Vue JS 。
学习框架的有效方式就是践行。
Vue CLI 3 介绍,我们将使用其来生成前端应用。
我们将了解:
Vue CLI v3 为开发者提供了新的体验,允许我们很容易地生成零配置的 Vue 项目。一旦项目需要更多扩展的时候可以使用插件添加更多的配置选项,不像 Create React App,我们可以不通过 ejecting 而是通过 Vue CLI 插件来配置项目。
Vue CLI v3 提供了很多新特性,例如:
@vue/cli
@vue/cli
和 @vue/cli-service-global
@vue/cli-service
)提供的众多特性:可升级、构建在 webpack 之上、拥有预设配置、可修改的配置文件、可扩展的插件、等等Article Series:
Article Series:
Installing Xampp and Laravel on Linux
composer create-project --prefer-dist laravel/laravel larave-react |
php artisan preset react |
Watch in development:
npm run watch |
Sequel Pro (for Mac OS)
phpmyadmin (for all OS)
修改 phpmyadmin 通过密码登陆:先在“账户”修改 root@localhost
的密码。然后将 /opt/lamp/phpmyadmin/config.inc.php
的 $cfg['Servers'][$i]['auth_type'] = 'config';
改成 cookie
。
[创建用户及赋予权限(https://www.cnblogs.com/lemon-flm/p/7597879.html)
create database if not exists laravel_reactjs default character set utf8 collate utf8_general_ci; |
php artisan migrate |
如果出现如下提示:
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; |
原因:laravel改变了默认的数据库字符集,现在使用utf8mb4,如果你使用的MySQL数据库高于5.7就不会报错,如果低于该版本就会报错
解决方案:在
AppServiceProvider.php
添加代码:Schema::defaultStringLength(191);
完整的代码:
use Illuminate\Support\Facades\Schema;//一定要记得引入Schema |
将刚才建的表删除,重新运行:
$ php artisan migrate |
php artisan make:migration create_blogs_table --create=blogs |
routes/web.php
:
Route::get('/', function () { |
php artisan make:model Blog |
https://www.youtube.com/watch?v=WYKSDrgk0fE&index=1&list=PLTXFz3WKxvNJZo1T0-ypVBWD0MfJtshav