加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

dojo.xhrPut

发布时间:2020-12-16 21:42:53 所属栏目:百科 来源:网络整理
导读:*put创建,post更新 转载自:http://dojotoolkit.org/reference-guide/1.7/dojo/xhrPut.html#id7 dojo.require("dijit.form.Button");function sendText(){ var button = dijit.byId("submitButton2"); dojo.connect(button,"onClick",function(event){ // T

*put创建,post更新

转载自:http://dojotoolkit.org/reference-guide/1.7/dojo/xhrPut.html#id7

dojo.require("dijit.form.Button");

function sendText(){
  var button = dijit.byId("submitButton2");

  dojo.connect(button,"onClick",function(event){
    // The parameters to pass to xhrPut,the message,and the url to send it to
    // Also,how to handle the return and callbacks.
    var xhrArgs = {
      url: "putIt",putData: "Some random text",handleAs: "text",load: function(data){
        dojo.byId("response2").innerHTML = "Message put.";
      },error: function(error){
        // We'll 404 in the demo,but that's okay.  We don't have a 'putIt' service on the
        // docs server.
        dojo.byId("response2").innerHTML = "Message put.";
      }
    }
    dojo.byId("response2").innerHTML = "Message being sent..."
    // Call the asynchronous xhrPost
    var deferred = dojo.xhrPut(xhrArgs);
  });
}
dojo.ready(sendText);

<b>Push the button to PUT some text.</b>
<br>
<br>
<button data-dojo-type="dijit.form.Button" id="submitButton2">Send it!</button>
<br>
<br>
<b>Result</b>
<div id="response2"></div>

掌握 Dojo 工具包,第 2 部分: XHR 框架与 Dojo

http://www.ibm.com/developerworks/cn/web/1202_zhongsq_widgetcompare/

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读