• MVC 使用 Webuploader 插件 传递额外参数 备忘笔记


                            // 实例化
                            uploader = WebUploader.create({
                                pick: {
                                    id: '#filePicker-2',
                                    label: '点击选择图片'
                                },
                                formData: {
                                    key: $("#id").val() //将#id 元素的Val 作为额外参数传递给Action
                                },
                                dnd: '#dndArea',
                                paste: '#uploader',
                                swf: 'lib/webuploader/0.1.5/Uploader.swf',
                                chunked: false,
                                chunkSize: 512 * 1024,
                                server: '/Products/Product/Upload',
                                // runtimeOrder: 'flash',
    
                                // accept: {
                                //     title: 'Images',
                                //     extensions: 'gif,jpg,jpeg,bmp,png',
                                //     mimeTypes: 'image/*'
                                // },
    
                                // 禁掉全局的拖拽功能。这样不会出现图片拖进页面的时候,把图片打开。
                                disableGlobalDnd: true,
                                fileNumLimit: 30,
                                fileSizeLimit: 200 * 1024 * 1024,    // 200 M
                                fileSingleSizeLimit: 50 * 1024 * 1024    // 50 M
                            });
    

    将#id 元素的Val 作为额外参数传递Action
    Action 写法: public ActionResult Upload(string id, string name, string type, string lastModifiedDate, HttpPostedFileBase file, string key)

  • 相关阅读:
    BUGFREE安装等
    常用网站
    Mongodb
    python资源
    HTTP协议详解(经典)
    Jmeter工具
    一.移动app测试与质量保证
    我发现涯哥特有才。各种跳,组合式
    原来如此
    我真庆幸我看过那本书。
  • 原文地址:https://www.cnblogs.com/linqing/p/5978728.html
Copyright © 2020-2023  润新知