使用fetch api读取.scss文件

时间:2017-07-21 15:35:19

标签: javascript sass fetch-api

我试图获取一个.scss文件,该文件中包含变量,在我的公共文件夹中,并读取其中的文本。

这是我尝试过的:

fetch('someFolder/someFolder/_variables.scss')
      .then(response => console.log(response.data))

返回undefined。这是我第一次使用fetch api,所以任何帮助都表示赞赏。

1 个答案:

答案 0 :(得分:2)

fetch的回复是Response个对象。由于它没有名为data的属性,因此结果确实未定义。以下应该有效:

fetch('someFolder/someFolder/_variables.scss')
  .then(response => response.text()) // <----
  .then(response => console.log(response))

请参阅response.text()