使用Link模块的Next.js页面无法通过CSS导入加载文件

时间:2019-01-10 17:23:00

标签: reactjs next.js css-loader

我正在将next.js(7.0.2)添加到现有项目中,但无法弄清楚为什么Link模块不能加载具有import 'style.css'的页面。

我遵循了@zeit/next-css的说明以及Next.js/Express的集成。

我安装了以下软件包

  • 下一个7.0.2
  • @ zeit / next-css
  • css-loader@1.0.1
  • 表达(v4)

next.config.js

    // ./next.config.js file
    const withCSS = require('@zeit/next-css')
    module.exports = withCSS() 

index.js

    // ./pages/index.js file
    import Link from 'next/link'
    const Index = () => (
      <div>
        <p>Hello Next.js</p>
        <p>
          <Link href="/test"><a>test</a></Link>
        </p>
      </div>
    )

    export default Index

test.js

    // ./pages/test.js file
    import "../style.css"
    export default () => <div className="example">Hello World!</div>

style.css

    // ./style.css file
      .example {
        font-size: 50px;
      }

预期的行为:“链接”模块将使用CSS加载页面,就像其他页面一样。

实际行为:除具有import 'my.css'的页面外,所有页面都将加载。我可以直接通过网址加载该页面。

EG-

  1. Works =正在加载http://localhost:3000/index
  2. Works =加载http://localhost:3000/test(并应用CSS)
  3. 不起作用=加载http://localhost:3000/index,然后单击测试链接。什么都没发生。如果转到开发人员工具(Chrome)上的“网络”标签,则会看到列出的test.js,发起者是page-loader.js。似乎随后出现了一系列按需输入ping?page = /,但不确定其含义。

更新:如果我注释掉import "../style.css",则文件加载(没有CSS)。因此,在服务器处理路由的css处理中似乎有些不适合我的设置。

@Darryl-这是我明确的初始化文件中的相关片段。整个文件可以在https://github.com/tagyoureit/nodejs-poolController/blob/6.0-DEV/src/lib/comms/server.js#L33上找到(当前迭代)。

  function startServerAsync(type) {
    ...
    const _next = require('next')
    const dev = process.env.NODE_ENV !== 'production'
    ...
    // servers is an object that holds http/https/socketio/mdns and other servers
    // type='http' in current testing
    servers[type].next = _next({ dev }) 
    servers[type].next.prepare()
      .then(() => {
        servers[type].app = express();
        servers[type].server = 
        container.http.createServer(servers[type].app);
        configExpressServer(servers[type].app, express, servers[type].next);
        servers[type].server = servers[type].server.listen(servers[type].port, function () {
        container.logger.verbose('Express Server ' + type + ' listening at port %d', servers[type].port);
        container.io.init(servers[type].server, type)
            resolve('Server ' + type + ' started.');
      });
    }

    // assign static/api routes
    function configExpressServer(app, express, _next) {
      // use next as router
      const handle = _next.getRequestHandler()

      // many app.get / app.use statements
      ...
      // catch all to route through next
      app.get('*', (req, res) => {
        const { parse } = require('url')
        const parsedUrl = parse(req.url, true)
        const { pathname, query } = parsedUrl
        handle(req, res, parsedUrl)
      })
  }

1 个答案:

答案 0 :(得分:0)

我也遇到了这个问题,在花了更多时间之后,我终于找到了解决方案,首先您要通过布局管理代码,然后在使用布局的任何页面中都必须添加:import Link from'next / link '仅在导入布局线之后。我希望这能解决您的问题