我正在使用https://hyperstack.org/编写同构应用程序,并决定实现将代码直接从浏览器上传到S3的代码(而不是通过我的Rials服务器)。
我计划使用以下库:https://github.com/odysseyscience/react-s3-uploader。
提供的JSX代码看起来很简单
server="http://cross-origin-server.com"
我想知道是否有人在Hyperstack中做到了这一点,是否需要考虑任何特定的指针?
我对@InitBinder
public void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(LocalDate.class,
new LocalDateEditor());
}
有点担心,想知道如何从客户端代码中获取服务器的名称?