- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这就是我将数据发布到服务器的方式
var request = new http.MultipartRequest("POST", uri);
request.headers.addAll(headers);
request.fields['property_id'] = property_id; //value from textcontroller
request.fields['unit_id'] = unitlist; //value from textcontroller
request.fields['tenant_name'] = tenant_name; //value from textcontroller
request.fields['additional_terms'] = addistiona_tems;//value from textcontroller
var stream = new http.ByteStream(DelegatingStream.typed(file.openRead()));
var length = await file.length();
var tenantimage = new http.MultipartFile('Tenant_image', stream, length,
filename: basename(file.path));
request.files.add(tenantimage);
var response = await request.send();
这是我返回发送值作为响应时的结果
Array
(
[property_id] => 2
[unit_id] => 1463
[tenant_name] => aqws
[additional_terms] => awedswer
)
但我想实现为“unit_id”和“additional_terms”作为数组?
Array
(
[property_id] => 2
[unit_id] => Array
(
[0]
)
[tenant_name] => aqws
[additional_terms] => Array
(
[0]=> awedswer
[1]=> bilk
)
)
最佳答案
试试这个:-
request.fields['additional_terms'] = "[{"shop_id":"1","product_id":1,"unit_price":188.0,"quantity":1,"discounted_price":0.0}]"
关于ios - 发送Http.MultipartRequest作为 flutter 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63351929/
这是我正在使用 postman 作为数组测试我的 api 但是我如何使用 MultipartRequest 发送数组 var uri = Uri.parse(Constants.BASEURL + C
我正在使用 Grails 2.4.3,并且我有一个 方法设置为 post,但我在 Controller 操作中没有收到 MutlipartRequest 。相反,我得到了一个 Servlet3Secu
我正在尝试使用 MultipartEntitybuilder 从客户端构建多部分请求: MultipartEntityBuilder builder = MultipartEntityBuilder.
用于处理上传文件的 Orielly 的 MultipartRequest 的一个好的替代开源库是什么? 最佳答案 Apache Commons FileUpload现在已成为事实上的标准。它非常有用,
我正在使用Oreilly MultipartRequest servlet解析表单 multipart/form-data 请求: String path = getServletContext().
我从包 image_picker 中获取图像:^0.6.6+1 我正在尝试将来自 http.MultipartRequest 的图像上传到无法识别图像的 Node 服务器。 当我发送带有表单数据的 P
如果我接受来自 MultipartRequest 的文件并调用 File f = request.getFile("fileName"); 文件是写入磁盘(作为临时文件)还是仅存储在内存中? 最佳答案
这个问题在这里已经有了答案: How to add JAR libraries to WAR project without facing java.lang.ClassNotFoundExcept
我正在使用: Spring 4.1.1.RELEASE Spring Security 3.2.5.RELEASE spring-security-oauth2 1.0.0.RELEASE 我创建了一
我正在使用 Volley 进行 API 调用。我需要将图像发布到我的服务器。 我已经尝试了很多 MultipartRequest 实现,都没有效果。 我刚刚尝试使用来自 How to send a “
我正在使用 MultipartRequest在 Dart 中,以便将文件上传到 API。但是我需要在我的请求中添加授权 header 。我面临的问题是 header 属性是最终的,我无法覆盖它。我该如
我正在尝试在我的 Flutter 应用中添加取消文件上传功能。我目前正在使用 http package 中的 http.MultipartRequest() 来上传文件。我已尝试使用 Cancelab
我是一名优秀的程序员,十分优秀!