I try to import a .txt file to show the text in a text box.
My code:
import React, { Component } from 'react';
import './LoadMyFile.css';
import myText from './sample.txt';
export default class LoadMyFile extends Component {
render() {
return (
<div>
<button onClick={this.handleClick} className="LoadMyFile" name="button" variant="flat">test string</button>
</div>
)
}
handleClick = () => {
console.log(myText);
}
}
But i see in console: /static/media/sample.f2e86101.txt
What is going wrong here?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…