Compare commits

..

No commits in common. "233b24032eedeb7fad07ee6fa13ddb094ea1b223" and "483803a3027475e0c0ef016f85955d68a2595d66" have entirely different histories.

3 changed files with 2 additions and 6 deletions

View File

@ -6,7 +6,6 @@
- 增加降采样 - 增加降采样
- file格式图片fd同步close - file格式图片fd同步close
- 解码pixelMap默认不可编辑图形变化可编辑 - 解码pixelMap默认不可编辑图形变化可编辑
- 修改网络请求超时设置
## 3.1.0-rc.2 ## 3.1.0-rc.2
- 修复宽高不等svg图片显示有毛边 - 修复宽高不等svg图片显示有毛边

View File

@ -275,9 +275,6 @@ ImageKnifeComponent({
}),animatorOption:this.animatorOption }),animatorOption:this.animatorOption
}).width(300).height(300) }).width(300).height(300)
``` ```
#### 复用场景
在aboutToRecycle生命周期清空组件内容通过watch监听触发图片的加载。
## 接口说明 ## 接口说明
### ImageKnife组件 ### ImageKnife组件
| 组件名称 | 入参内容 | 功能简介 | | 组件名称 | 入参内容 | 功能简介 |

View File

@ -479,8 +479,8 @@ async function requestJob(request: RequestJobRequest, requestList?: List<ImageKn
header: headerObj, header: headerObj,
method: http.RequestMethod.GET, method: http.RequestMethod.GET,
expectDataType: http.HttpDataType.ARRAY_BUFFER, expectDataType: http.HttpDataType.ARRAY_BUFFER,
connectTimeout: 60000, connectTimeout: 6000,
readTimeout: 0, readTimeout: 6000,
// usingProtocol:http.HttpProtocol.HTTP1_1 // usingProtocol:http.HttpProtocol.HTTP1_1
// header: new Header('application/json') // header: new Header('application/json')
}); });