我正在使用kenoui上传器在angularjs,我可以上传文件,但我不能保存该文件。
我的任务是如何在选项中给予saveUrl和removeUrl
下面是我的代码,
index.html
<input name="files"
type="file"
kendo-upload
k-options="fileAttachmentConfig"
k-select="onSelect" />index-ctrl.js
$scope.fileAttachmentConfig = {
async: {
saveUrl: 'app/images/client',
removeUrl: 'remove',
autoUpload: false
}}
那么,如何处理saveUrl和removeUrl,以及如何将文件保存到本地路径?
https://stackoverflow.com/questions/31447788
复制相似问题