为什么我的休息网址被叫了两次?

时间:2017-02-10 05:37:42

标签: javascript html ajax iframe dojo

我的javascript代码如下所示:

function copysave(){
    dojo.io.iframe.send({
    form:dojo.byId("formId"),
    method: "POST",
    //handleAs: "html",
    encoding : "utf-8",
    url :"/CopyReplace/copysavefirst",
    load: function(response) {
        txtResponse = response;
        alert("respone: "+txtResponse);
        console.log(" success : txtResponse"+txtResponse)
    },
    error: function(error, ioArgs) {
        console.log("bulkcopy() ERROR :: " + error);
        console.log("bulkcopy() ioArgs :: " + ioArgs);
        return error;
    }
  });
}

我的Html如下所示:

<form enctype="multipart/form-data" id="formId" method="">
<button name="save" id="submitValues" value="Finish" onclick="copysave()" >Finish</button>

如果我点击完成,我可以看到/CopyReplace/copysavefirst两次点击服务器。 有人可以告诉我怎么做只打一次电话? 此外,它将转到错误部分。

0 个答案:

没有答案