zoukankan      html  css  js  c++  java
  • ext.net与extjs的关系

    一、在客户端,ext.net中可以使用extjs的语法。

    如发送ajax请求,

      Ext.Ajax.request({
                url: 'Common/getNode',
                headers: {
                    'userHeader': 'userMsg'
                },
                params: { nodeid: field.value },
                method: 'Post',
                success: function (response, options) {
                    var  streturn=response.responseText;
                    if (streturn == "noFunCode") {
                        Ext.MessageBox.alert('成功', '无该功能代码,请重新收入! ');
                    }
                    else
                    {
                        var objreturn = eval('(' + response.responseText + ')');                 
                        loadExample(objreturn.Url.replace('~',''), field.value, objreturn.Names);
                    }
                },
                failure: function (response, options) {
                    Ext.MessageBox.alert('失败', '请求超时或网络故障,错误编号:' + response.status);
                }
            });

    二、在客户端中,用ext.net可以序列化对象

    Ext.encode(App.searchFrm.getForm().getValues())

    在程序中,可以通过ext.net进行序列化

    JSON.Deserialize<Dictionary<string, dynamic>>(value)

  • 相关阅读:
    NOIP 2017逛公园(记忆化搜索)
    NOIP 2012疫情控制 (二分+倍增+贪心)
    NOIP 2005过河(DP+路径压缩)
    P1198 [JSOI2008]最大数
    [Noip2016]蚯蚓
    [六省联考2017]期末考试
    六省联考:组合数问题
    蒜头君的兔子
    bzoj1015 [JSOI2008]星球大战starwar
    luogu P3370 【模板】字符串哈希
  • 原文地址:https://www.cnblogs.com/wing2002li/p/5531096.html
Copyright © 2011-2022 走看看