模板字符串没有正确编译

时间:2017-12-25 18:37:58

标签: reactjs webpack babeljs

const ROOT_URL = "http://reduxblog.herokuapp.com/api/posts";
const API_KEY = "?key=PWEFBIUB";
const url = `$(ROOT_URL)/posts$(API_KEY)`

正在进入: -

var ROOT_URL = "http://reduxblog.herokuapp.com/api/posts";
var API_KEY = "?key=PWEFBIUB";
var url = '$(ROOT_URL)/posts$(API_KEY)';

为什么会发生这种情况我不知道。但是巴贝尔工作不正常。请帮忙。

1 个答案:

答案 0 :(得分:3)

对于link,表达式应该在Curly括号内。因此,您应该使用{}代替(),就像这样

const ROOT_URL = "http://reduxblog.herokuapp.com/api/posts";
const API_KEY = "?key=PWEFBIUB";
const url = `${ROOT_URL}/posts${API_KEY}`