React.jsVue.js都是很好的框架。而且Next.jsNuxt.js甚至将它们带入了一个新的高度,这有助于我们以更少的配置和更好的可维护性来创建应用程序。但是,如果你必须经常在框架之间切换,在深入探讨另一个框架之后,你可能会轻易忘记另一个框架中的语法。在本文中,我总结了这些框架的基本语法和方案,然后并排列出。我希望这可以帮助我们尽快掌握语法。

c8b9649dc1e18c2841a57cdb4204d337.png

在上一篇文章:React.js和Vue.js的语法并列比较 介绍了Vue.js和React.js的语法差异。


Assets

Next.js

/*|- public/|-- my-image.png*/function MyImage() {  return ;}

Nuxt.js

assets,默认情况下,Nuxt使用vue-loader、file-loader和url-loader来提供强大的assets服务。

static,自动服务

基本路由

Next.js

|- pages/  |- index.js        → href="/"  |- blog/index.js   → href="/blog"

Nuxt.js

|- pages/  |- index.vue       → href="/"  |- blog/index.vue  → href="/blog"

动态路由

Next.js

|- pages/  |- blog/[slug].js           → href="/blog/:slug" (eg. /blog/hello-world)  |- [username]/[option].js   → href="/:username/:option" (eg. /foo/settings)  |- post/[...all].js         → href="/post/*" (eg. /post/2020/id/title)

Nuxt.js

|- pages/  |- blog/[slug].vue         → href="/blog/:slug" (eg. /blog/hello-world)  |- _username/_option.vue   → href="/:username/:option" (eg. /foo/settings)

Link

Next.js

import Link from "next/link";function Home() {  return (          Home      );}

Nuxt.js

Home page
544746c8f31b501b306c998755269691.png

Fetch-On-Server

Next.js

getInitialProps只能在每个页面的默认导出中使用

< Next.js 9.3 (class component)

import fetch from "isomorphic-unfetch";export default class Page extends React.Component {  static async getInitialProps(ctx) {    const res = await fetch(`https://.../data`);    const data = await res.json();    return { props: { data } };  }  render() {    // Render data...  }}

< Next.js 9.3 (function component)

import fetch from "isomorphic-unfetch";function Page({ data }) {  // Render data...}Page.getInitialProps = async (ctx) => {  const res = await fetch(`https://.../data`);  const data = await res.json();  return { props: { data } };};

>= Next.js 9.3

import fetch from "isomorphic-unfetch";function Page({ data }) {  // Render data...}export async function getServerSideProps() {  const res = await fetch(`https://.../data`);  const data = await res.json();  return { props: { data } };}export default Page;

Nuxt.js

发生了一些错误
Loading...

{{ post.title }}

{{ post.body }}    
刷新

Layout

Next.js

./pages/_app.js:自动应用于所有页面

export default function MyApp({ Component, pageProps }) {  return (      );}

Nuxt.js

layouts/with-header-footer.vue:创建布局

pages/index.vue:应用布局

错误页面

Next.js

pages/_error.js

function Error({ statusCode }) {  return (    

{statusCode ? `An error ${statusCode} occurred on server` : "An error occurred on client"}

);}Error.getInitialProps = ({ res, err }) => { const statusCode = res ? res.statusCode : err ? err.statusCode : 404; return { statusCode };};export default Error;

Nuxt.js

layouts/error.vue

Page not found

一个错误发生

Home page

Meta-Tag

Next.js

import Head from "next/head";function IndexPage() {  return (    
My page title

Hello world!

);}

Nuxt.js

{{ title }}

Context

Next.js

getInitialProps只能在每个页面的默认导出中使用

function Page({ data }) {  // 渲染数据...}Page.getInitialProps = async (context) => {  const { pathname, query, asPath, req, res, err } = context;  // pathname - 当前路径,这是/pages中的页面路径。  // query - 将URL的查询字符串部分作为对象进行解析  // asPath - 浏览器中显示的实际路径(包括查询)的字符串  // req - HTTP request object (server only)  // res - HTTP response object (server only)  // err - 如果在渲染过程中遇到任何错误,则为错误对象。  return { props: { project: "next" } };};

Nuxt.js

export default {  asyncData(context) {    // 通用keys    const {      app,      store,      route,      params,      query,      env,      isDev,      isHMR,      redirect,      error,    } = context;    // 服务器端    if (process.server) {      const { req, res, beforeNuxtRender } = context;    }    // 客户端    if (process.client) {      const { from, nuxtState } = context;    }    return { project: "nuxt" };  },};

CLI

React.js: create-react-app

npx create-react-app react-template

Next.js: create-next-app

npx create-next-app next-template

Vue.js: vue-cli

yarn global add @vue/clivue create vue-template

如果对你有所启发和帮助,可以点个关注、收藏、转发,也可以留言讨论,这是对作者的最大鼓励。

作者简介:Web前端工程师,全栈开发工程师、持续学习者。

私信回复大礼包送某网精品视频课程网盘资料,准能为你节省不少钱!

Logo

前往低代码交流专区

更多推荐