我正在尝试使用Sails.js和React构建一个同构应用程序。客户端部分很简单。但是我遇到了服务器端渲染的问题。
当我尝试使用React服务器渲染* .jsx文件时,我得到了这个:
renderToString(): You must pass a valid ReactElement
我正在使用sailsjs,react和sails-hook-babel(用于ES6语法)。
./资产/组件/ Auth.jsx:
import React from 'react';
export class Auth extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div className='auth'>
Very simple element without any logic just for test server-rendering.
</div>
);
}
}
./ API /控制器/ AuthController.js:
var Auth = require('./../../assets/components/Auth.jsx');
import React from 'react';
module.exports = {
render: function (req, res) {
//var markup = React.renderToString(
// Auth
//); // This throws an error
console.log(Auth); // {__esModule: true, Auth: [Function: Auth]}
//res.view("layout", {app: markup});
}
};
我到处都试过ES5 / ES6语法。每次都会出错。在客户端,这个Auth.jsx运行正常(我正在使用带有babel-loader的webpack)。
答案 0 :(得分:5)
您的问题不在于您的组件本身,而是您从模块中导出组件的方式。
仅使用export
时,您需要像这样导入模块。
import {Auth} from 'auth';
只需使用export
即可从模块中导出超过1件事。
// My Module.
export function a(x) {
console.log('a');
}
export function b(x, y) {
console.log('b');
}
import { a, b } from 'myModule';
或者你可以使用import * from 'myModule';
这称为名为export 。
您的用例需要使用的是export default
,它允许从您的模块中导出单个对象。
export default class Auth extends React.Component {}
因此,您可以将模块作为单个对象导入而无需花括号。
import Auth from 'auth';
然后你需要使用JSX语法React.renderToString(<Auth />);
或者渲染
React.createElement(Auth);
您可以阅读有关ECMA Script 6中的模块如何工作的所有内容here