我正在使用新的OMDB api,并希望在客户端保持获取请求(包括密钥)的可见性。
我在React中做的所有电话都是这样的:
import OmdbKey from './OmdbKey';
populate(keystrokes) {
let query = "http://www.omdbapi.com/?s=";
fetch(query + keystrokes + '&apikey=' + OmdbKey )
.then((response) => {
response.json().then((json) => {
this.setState({ results: json.Search });
});
});
}
有没有办法这样做,所以我可以隐藏GET请求中的密钥?如果不是,我该怎么办呢?
由于