zoukankan      html  css  js  c++  java
  • sencha touch jsonp

    asp.net server side code 

    <%@ Page Language="C#" %>
    
    <script runat="server">
        protected void Page_Load(object sender, EventArgs e)
        {
                
    String jsonString = "{success: true}";
    jsonString=@"{users: [
        { id: 1, firstName: 'Tommy laptop', lastName: 'Maintz' },
        { id: 2, firstName: 'Rob', lastName: 'Dougan' },
        { id: 3, firstName: 'Ed', lastName: 'Avins' },
        { id: 4, firstName: 'Jamie laptop', lastName: 'Avins' },
        { id: 5, firstName: 'Dave', lastName: 'Dougan' },
        { id: 6, firstName: 'Abraham', lastName: 'Elias' },
        { id: 7, firstName: 'Jacky', lastName: 'Ngyuyen' },
        { id: 8, firstName: 'Jay', lastName: 'Ngyuyen' },
        { id: 9, firstName: 'Jay', lastName: 'Robinson' },
        { id: 10, firstName: 'Rob', lastName: 'Avins' },
        { id: 11, firstName: 'Ed', lastName: 'Dougan' },
        { id: 12, firstName: 'Jamie', lastName: 'Poulden' },
        { id: 13, firstName: 'Dave', lastName: 'Spencer' },
        { id: 14, firstName: 'Abraham', lastName: 'Avins' },
        { id: 15, firstName: 'Jacky', lastName: 'Avins' },
        { id: 16, firstName: 'Rob', lastName: 'Kaneda' },
        { id: 17, firstName: 'Ed', lastName: 'Elias' },
        { id: 18, firstName: 'Tommy', lastName: 'Dougan' },
        { id: 19, firstName: 'Rob', lastName: 'Robinson' }
    ]}";
    String cb = Request.Params.Get("callback");
    String responseString = "";
    if (!String.IsNullOrEmpty(cb)) {
        responseString = cb + "(" + jsonString + ")";
    } else {
        responseString = jsonString;
    }
    Response.Write(responseString);
    
    
        }
    </script>

    js:

    Ext.define('MyApp.store.MyJsonPStore', {
        extend: 'Ext.data.Store',
    
        requires: [
            'MyApp.model.Person',
            'Ext.data.proxy.JsonP',
            'Ext.data.reader.Json'
        ],
    
        config: {
            autoLoad: true,
            data: [
                {
                    id: 268,
                    firstName: 'Lewis',
                    lastName: 'Wright'
                },
                {
                    id: 557,
                    firstName: 'Beulah',
                    lastName: 'Sanchez'
                },
                {
                    id: 983,
                    firstName: 'Leon',
                    lastName: 'Martin'
                }
            ],
            groupField: 'lastName',
            model: 'MyApp.model.Person',
            storeId: 'MyJsonPStore',
            proxy: {
                type: 'jsonp',
                url: 'http://www.abc.com/jsonp.aspx',
                reader: {
                    type: 'json',
                    rootProperty: 'users'
                }
            }
        }
    });

     reference:

    http://docs.sencha.com/touch/2.3.1/#!/api/Ext.data.proxy.JsonP

  • 相关阅读:
    glibcxx升级
    content security policy directive
    创建AD域用户,并用之在客户端操作远程桌面
    windows安装ad域
    Python切片
    Python字符串格式化
    一段比较有意思的C++代码
    MySql数据库导入新的表里面 php操作,网站文章批量导入到新网站
    [P6672] [清华集训2016] 你的生命已如风中残烛 题解
    软件测试基础之测试分类
  • 原文地址:https://www.cnblogs.com/zyip/p/3525492.html
Copyright © 2011-2022 走看看