首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

$ajax加载数据有关问题

2013-04-26 
$ajax加载数据问题script typetext/javascript$(document).ready(function checkAjax() {$.ajax({typ

$ajax加载数据问题

<script type="text/javascript">
        $(document).ready(function checkAjax() {
            $.ajax({
                type: "post",
                url: "HighCharts.aspx/DataBank",

                contentType: "application/json; charset=utf-8",

                dataType: "json",
                success: function (data) {
                    data = data[1].price;
                    alert(data);
                },
                error: function (err) {
                    alert(err + "调用后台程序出现错误,请尝试刷新!");
                }
            }
        )
        })</script>

后台数据:
   
public static string DataBank()
        {
           // work=new WorkOrderMachineOnlyOnce();
           // iData=(IDataChannels)work;
            string ajaxTest = "hello";
            string json = "[";
            json += "{"linespeed":"" + ajaxTest+ ""},{"price":"";
            json += ajaxTest + ""}]";
            return json;
        }

页面打开提示错误时price未定义,各位大大,请教下,这是为啥呢。
[解决办法]
1、[WebMethod]
2、data.d :返回的json在这里
[解决办法]
前台代码:


<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>


    <script type="text/javascript">
        function CallCs() {
            $.ajax({
                //要用post方式      
                type: "Post",
                //方法所在页面和方法名      
                url: "WebForm1.aspx/GetJson",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                success: function (data) {
                    //返回的数据用data.d获取内容      
                    alert(data.d);
                },
                error: function (err) {
                    alert(err);
                }
            });
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <input type="button" onclick="CallCs()" value="test" />
    </div>
    </form>
</body>
</html>




后台代码:


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Services;

namespace WebApplication1
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        [WebMethod]
        public static string GetJson()
        {
            return "Hello world";
        }
    }
}


如果是json格式的字符串
前台要这样处理:
json = eval("("+jsonstr+")");
[解决办法]
data.d 后面这个才是你要的东西

微软对Webmethod的返回值做了一个封装,外面用d包了一层

热点排行