字段"文件"数据总是空的?

时间:2015-11-13 14:32:07

标签: javascript alpacajs

我第一次尝试使用字段" FILE",我希望看到的是文件URI或base64格式的数据/图像,但在我点击之后提交我什么都没有!

我是否错误地使用了该字段?

$("#field1").alpaca({
    "data": "",
    "options": {
        "type": "file",
             "label": "Ice Cream Photo:",
             "helper": "Pick your favorite ice cream picture.",
        "form": {
        "attributes": {
            "action": "http://httpbin.org/post",
                "method": "post"
        },
            "buttons": {
            "submit": {
                "click": function () {
                    $('#data').html(JSON.stringify(this.topControl.data));
                    this.refreshValidationState(true);
                    if (!this.isValid(true)) {
                        this.focus();
                        return;
                    }
                    this.ajaxSubmit();
                }
            }
        }
    },
},
    "schema": {
        "type": "string",
           "format": "uri"
     }
});

这里是一个小提琴http://jsfiddle.net/vert3x/k1a3w0fh/1/

谢谢。

0 个答案:

没有答案