gpt4 book ai didi

java - 将另一个api的返回数据集成到服务方法中

转载 作者:行者123 更新时间:2023-11-30 05:52:01 25 4
gpt4 key购买 nike

下面是我的服务代码,用于将问题上传到我的数据库;然而,我有另一个 api 用于从我的前端将图像加载到这些问题中。为了将该相关图像设置到数据库中,我有代码:

question.setImage_urls(cloudStorageHelper.getUrl());

这是在cloudstoragehelper 类中使用的数据库setImage url 的代码。那么我应该如何将这段代码集成到下面的代码中。

@RequestMapping(method = RequestMethod.POST, value = "/saveQuestion")
public ResponseEntity<?> saveQuestion( @RequestBody Question question ) throws IOException, ServletException, InterruptedException, NullPointerException
{ return new ResponseEntity<>( questionService.saveQuestion( question ), HttpStatus.CREATED );
}

最佳答案

为什么你不尝试创建一个新的数据库来保存图像网址,并通过创建服务将这些图像网址获取到你的前端(似乎你想将数据绑定(bind)到前端),以便从前端绑定(bind)值到图像网址。将会对你的 future 带来更多的好处。只是一个建议

关于java - 将另一个api的返回数据集成到服务方法中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53747377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com