项目需要 seo 及兼容手机端,百度大法后选定了 nuxt,记录一下
下载安装
百度很多就不写了
路由
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
pages/ --| _slug/ -----| comments.vue -----| index.vue --| users/ -----| _id.vue --| index.vue
router: { routes: [ { name: 'index', path: '/', component: 'pages/index.vue' }, { name: 'users-id', path: '/users/:id?', component: 'pages/users/_id.vue' }, { name: 'slug', path: '/:slug', component: 'pages/_slug/index.vue' }, { name: 'slug-comments', path: '/:slug/comments', component: 'pages/_slug/comments.vue' } ] }
export default { validate ({ params }) { return /^\d+$/.test(params.id) } }
|
插件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
import Vue from 'vue' import iView from 'iview' import locale from 'iview/dist/locale/en-US'
Vue.use(iView, { locale })
Vue.prototype.$Message.config({ top: 300 })
import { localStore } from '@/utils/tools' import { getStore } from '@/utils/storage' export default function({ $axios, store }) { if (JSON.stringify(store.state.info) === '{}') { $axios.post('/api/common/info').then(res => { store.commit('SETINFO', res.data) }) } if (getStore('token')) { store.dispatch('changeLogin', { state: true, info: JSON.parse(getStore('userInfo')) || {} }) $axios.post('/api/common/history') .then(res=>{ store.commit('GETHSITORY',res.data) }) } else { store.dispatch('changeLogin', { state: false }) } if (localStore.get('searchParams')) { store.commit('SETSEARCH', localStore.get('searchParams')) } }
{ plugins:[ { { src: '@/plugins/iview', ssr: true }, { src: '@/plugins/initStore', ssr: false } } ] }
|
兼容移动端配置
由于 PC 端需要兼容 ie9 并不能通用 所以我使用了两套代码 通过中间件来切换
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
import { deviceType } from "~/utils/tools";
export default function(context) { context.userAgent = process.server ? context.req.headers["user-agent"] : navigator.userAgent; context.deviceType = deviceType(context.userAgent);
if (context.deviceType.type === "pc") { if (/m[-]*[\w]*/g.test(context.route.name)) { context.redirect(context.route.fullPath.slice(2)); } } else { if (!/m[-]*[\w]*/g.test(context.route.name)) { context.redirect("/m" + context.route.fullPath); } } }
router: { mode: 'history', middleware: ['device'], fallback: true },
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| const deviceType = function (UA) { const reg = /(Android|webOS|iPhone|iPod|tablet|BlackBerry|Mobile)/i; if (reg.test(UA)) { return { type: "mobile", }; } else { return { type: "pc", }; } } export { deviceType }
|
模块
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| modules: [ '@nuxtjs/axios' ],
axios: { proxy: true, }, proxy: { '/api': { target: 'http://192.168.2.17', pathRewrite: { '^/api': '/api' } } },
|
部署
npm build 后将.nuxt,static,package.json,nuxt.config.js 这 4 个文件夹放到服务器目录文件下 或者直接在服务器上把代码拉下来 build,然后 npm i 安装依赖 ,最后 npm start 运行即可
这里有个地方要注意 我们需要在 nuxt.config.js 加上这行代码 ,不然的话访问不了
1 2 3 4
| server: { port: 3000, // default: 3000 host: "0.0.0.0" // default: localhost },
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| upstream nodenuxt { server 127.0.0.1:3000; keepalive 64; } server { listen 80; server_name mysite.com; location / { proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $host; proxy_set_header X-Nginx-Proxy true; proxy_cache_bypass $http_upgrade; proxy_pass http://nodenuxt; } }
|
最后装 pm2 进程守护来启动 node 就 ok 了
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| // pm2 常用命令 $ pm2 start npm
$ pm2 start app.js $ pm2 start app.js $ pm2 start app.js $ pm2 start script.sh
$ pm2 list $ pm2 monit $ pm2 show [app-name]
$ pm2 logs $ pm2 logs [app-name] pm2 flush
$ pm2 stop all $ pm2 stop 0 $ pm2 restart all $ pm2 reload all $ pm2 gracefulReload all $ pm2 delete all $ pm2 delete 0 $ pm2 scale api 10 $ pm2 reset [app-name]
$ pm2 startup $ pm2 save $ pm2 resurrect
|