yinhaox
yinhaox
在 common/common-rest/src/main/java/org/apache/servicecomb/common/rest/filter/inner/ServerRestArgsFilter.java 中 处理响应体Content-Type属性的方法是通过拼接produceProcessor的getName()方法返回的值和"; charset=utf-8"字符串实现的,但如果我需要设置其他charset,甚至添加boundary属性,应该怎么做? ``` java responseEx.setContentType(produceProcessor.getName() + "; charset=utf-8"); ``` 比如我某个契约需要: Content-Type: multipart/form-data; boundary=----------------------
### What problem does this feature solve 场景一,通过指令,为表单控件设置默认的提示信息 ```typescript import {Directive, Optional} from '@angular/core'; import {TiSelectComponent, TiTextComponent, TiValidationDirective} from "@opentiny/ng"; @Directive({ selector: 'ti-select[formControlName],input[tiText][formControlName]', standalone: true, host: { "[style.width.px]": "240" },...