私は、reactjsを使用するプロジェクトを持っています。これはbabelによって転送されます。私はes2015を使用し、.babelrc
の変換に反応します。現在リファクタリングを行っており、最初のパスでは基本的にexport class foo
で必要なすべてのことを行いました。これらのクラスの多くは実際には単なる関数でなければならないので、そのように書き直そうとしていますが、同じエラーが発生し続けます。私のメインアプリケーションファイルは次のようになります。
import React, { Component } from 'react';
import {Foo, Bar} from './components/ui.js';
class Application extends Component {
constructor(props){
super(props);
this.state = {
object: null
}
}
componentDidMount(){
// code
}
componentDidUpdate(){
// other code
}
render(){
return(
<div>
<Foo />
<Bar />
</div>
)
}
}
module.exports = Application
そして、ui.js
からのインポートは次のようになります。
import React, { Component } from 'react';
export class Foo extends Component {
constructor(props){
super(props);
}
render() {
return (
// Some JSX
)
}
}
export class Bar extends Component {
constructor(props){
super(props);
}
render() {
return (
// Some other JSX
)
}
}
これらのエクスポートされたクラスの1つを関数に変更しようとすると、たとえば:
// Note: I have tried a variety of syntax such as function, const, etc...
export var Bar {
render() {
return (
// Some other JSX
)
}
}
次のエラーが表示されます。
SyntaxError: Unexpected token <line where I declare a function>
私が何を間違っているのかはわかりませんが、グーグル検索では他の問題に対する答えしか出ていません。
関数を変数として定義するのと同じですが、フロントにエクスポートを追加するだけです。 (ES6構文を使用)
export const render = () => (
// Some other JSX
);
または代わりに
export var render = function() {
return (
// Some other JSX
);
};
関数のエクスポートはクラスのエクスポートと同じです。基本的なルールに従う必要があります。
返された複数の関数を示す以下の例を参照してください。
import React from 'react';
/* All function / class names HAS TO BE in CAPS */
var App1 = function (){
return (
<div>
<h1>
Hello World
</h1>
</div>
)
}
var App2 = function (){
return (
<div>
<h1>World Number 2 </h1>
</div>
);
}
var AllApp = function (){
return (
<div>
<App1 />
<App2 />
</div>
);
}
export default AllApp;
index.jsファイル:
import React from 'react';
import ReactDOM from "react-dom";
import AllApp from "./classhouse.jsx"; /* Note: App name has to be in CAPS */
import App from "./App";
const jsx =
<div>
<AllApp />
<App />
</div>
ReactDOM.render(jsx, document.getElementById("root"));
あなたは書いてます functional components
間違った方法で。
function Welcome() {
return <h1>Hello World</h1>;
}
または
const Welcome = () => {
return <p>Hello Wrold</p>
}
export default Welcome ;
ES6は、デフォルトのconstのエクスポートを許可しません。最初に定数を宣言してからエクスポートする必要があります。