我尝试使用ES2015模板文字as per the documentation进行Relay.QL调用,但Webpack对此不满意。
这是包含Relay.QL调用的文件:
import React from "react";
import ReactDOM from "react-dom";
import Relay from "react-relay";
import Main from "./components/Main";
ReactDOM.render(<Main />, document.getElementById('react'));
console.log(
Relay.QL'
{
links {
title
}
}
'
);
这是Webpack错误:
ERROR in ./js/app.js
Module build failed: SyntaxError: C:/websites/rgrjs/js/app.js: Unterminated string constant (11:12)
9 |
10 | console.log(
> 11 | Relay.QL'
| ^
12 | {
13 | links {
14 | title
at Parser.pp.raise (C:\websites\rgrjs\node_modules\babylon\index.js:1413:13)
看起来Webpack不像Relay.QL使用的ES2015模板文字?
我在webpack.config.js文件中包含了ES2015选项,如下所示:
query: {
presets: ['react', 'es2015', 'stage-0'],
plugins: ['./babelRelayPlugin']
}
最后.babelRelayPlugin文件如下所示:
// `babel-relay-plugin` returns a function for creating plugin instances
var getBabelRelayPlugin = require('babel-relay-plugin');
// load previously saved schema data (see "Schema JSON" below)
var schemaData = require('./data/schema.json').data;
module.exports = getBabelRelayPlugin(schemaData);
我还需要做些什么吗?我是Relay和ES2015的新手,所以我可能会遗漏一些明显的东西。
答案 0 :(得分:4)
Template literals用反引号表示,而不是引号。
Relay.QL`...`
如果你仔细观察这个例子,你会注意到他们也在使用反引号:
var fragment = Relay.QL`
fragment on User {
name
}
`;