We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
let keyword = nextProps.keyword;
this.setState({"loading":true,"firstView":false}); let url = 'https://api.github.com/search/users?q=${keyword}';
keyword 获取后为啥请求时q=${keyword}没有替换 发出的请求还是https://api.github.com/search/users?q=${keyword}
这个是怎么回事
The text was updated successfully, but these errors were encountered:
找到原因了es6语法没学好,原来es6的字符串模板是用反单引号(tab键上面的按键)
Sorry, something went wrong.
No branches or pull requests
let keyword = nextProps.keyword;
keyword 获取后为啥请求时q=${keyword}没有替换
发出的请求还是https://api.github.com/search/users?q=${keyword}
这个是怎么回事
The text was updated successfully, but these errors were encountered: