使用kendo ui上传文件,并使用URL传递参数

时间:2014-09-24 11:59:25

标签: kendo-ui

在kendo ui上传中,如何在上传文件同步时通过保存URL传递参数?如果我可以使用save-field参数你能告诉我如何使用它吗?

 $("#files").kendoUpload({
    async: {
    saveUrl: URL + "SaveUrl",
    autoupload: false,
    saveField: "**what to give here?????**",
    },

这是我的代码检查,如果保存字段的行为与参数类似,我可以在保存字段中给出什么。

1 个答案:

答案 0 :(得分:0)

根据kendo文档:

  

提交给 saveUrl 的表单字段的名称。默认值为输入名称。

所以这意味着它只会更改提交的字段。

但是,这是一种可能的解决方案: Pass Javascript/html Variable as Parameter with Kendo MVC upload control

以及JS版本:

$("#files").kendoUpload({
    multiple: false,
    async: {
        saveUrl: URL_HERE,
        autoUpload: true
    },
    upload: function(e){
        console.log(e)
        e.data = { id: JSVariable};
    }
});