2013-02-16 181 views
1

我正在工作extjs。我想通過json發送textfields數據。所以我寫了代碼 -如何通過json發送extjs數據

Ext.define('Balaee.controller.kp.WordController',{ 
    extend: 'Ext.app.Controller', 
    stores: ['kp.WordStore'], 
    models: ['kp.WordModel'], 
    views: ['kp.Word.Word'], 
    refs:[ 
     { 
      ref:'wordtext', 
      selector:'textfield[name=wordtext]' 
     }, 
     ], 
    init: function() { 
     console.log('Inside word controller'); 
     this.control(
       { 
      'Word button[action=SearchAction]': 
      { 
       click:this.SearchWord 
      }, 

     });//End of control 
    },//End of init() function 

    SearchWord:function(button) 
    { 
     var j = Ext.getCmp('wordtext').getValue(); 
     console.log("word is:"+j); 


          var wordObject = Ext.ModelManager.create(
       { 

        word:Ext.getCmp('wordtext').getValue(), 
       },'Balaee.model.kp.WordModel'); 


     wordObject.save({  
      success: function(record, operation) 
      { 
       console.log("registration successssssssssss "+record); 
      },//End of success function 
      failure: function(record, operation) 
      { 
       console.log("Inside failure functionnnnn"); 
      },//End of failure function 
      callback: function(record, operation) 
      { 
       console.log("Inside callback functionnnnnn"); 
       console.log(record); 
      }//End of callback function 
     });// End of 
    }, 


});//End of Controller 

但它總是失敗的功能。那麼我需要做哪些額外的改變。請能有人幫我...

+0

從文檔重:失敗 - 「在同步失敗完成時調用的函數當一個或多個操作在處理過程中返回異常時(即使某些操作也成功),調用失敗函數在這種情況下,您可以檢查批次的異常數組以查看確切地說哪些操作有例外。「查看例外數組,查看問題是什麼,如果您有關於如何解決您收到的異常的問題,請回到此處。 – existdissolve 2013-02-16 16:16:03

回答

0

嘗試使用此方法創建WordModel的實例:

var wordObject = Ext.create(
     'Balaee.model.kp.WordModel', 
     { word : j } 
    ); 

或者,也許你需要配置代理模型