asp.net 前端跟后端通过接口调用实现数据交互(含分页)

本文介绍了使用ASP.NET实现前端与后端通过接口进行数据交互的示例,包括分页功能。通过AJAX请求,前端获取后端控制器返回的数据,并利用Juicer模板库渲染页面。同时,提供了搜索功能,支持用户输入关键词进行搜索,并展示搜索结果。
摘要由CSDN通过智能技术生成

controller:

using System;

using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Collections.Generic;
using LoanSystem.WEB.Controllers;
using LoanSystem.Common;
using Comm;
namespace LoanSystem.WEB.Areas.Home.Controllers
{
    public class HelpCenterController : ReceBaseController
    {
        ZYXModel.DataEntities db = new ZYXModel.DataEntities();//数据上下文对象
        public HelpCenterController()
            : base(typeof(HelpCenterController))
        {


        }


        /// <summary>
        /// 前台首页
        /// </summary>
        /// <returns></returns>
        public ActionResult Index(string helpTypeId = null, int page = 1)
        {
            var callback = Request.QueryString.Get("callback");//调试是否能获取前端数据
            helpTypeId = StrHelper.Trim(helpTypeId);
            if (String.IsNullOrEmpty(helpTypeId))
            {
                List<ZYXModel.ls_help_type> list = (from d in db.ls_help_type select d).ToList();
                int typeCount = SqlDB.Count("ls_help_type");//数据表总记录条数
                var r = Comm.JsonHelper.ToStr(new { result = true, typeList = list, typeCount });//把list集合,查询结果,数据条数等转化为json
                return Content(string.IsNullOrEmpty(callback) ? r : string.Format("{0}({1})", callback, r));//把json数据返回前端
            }
            else
            {
                List<ZYXModel.ls_help_question> Questions = SqlDB.GetPage<ZYXModel.ls_help_question>("helpTypeId=" + helpTypeId, "id DESC", page, 5, "id", "[id],[questionDescribe],[helpTypeId]");
                int pageCount = 5;
                int questionCount = SqlDB.Count("ls_help_question", "helpTypeId=" + helpTypeId);
                var r = Comm.JsonHelper.ToStr(new { result = true, Questions = Questions,questionCount,pageCount });
                return Content(string.IsNullOrEmpty(callback) ? r : string.Format("{0}({1})", callback, r));
            }


        }


        /// <summary>
        /// 问题答案查看
        /// </summary>
        public ActionResult AnswerView(string helpQuestionId = "1")
        {
            var callback = Request.QueryString.Get("callback");
            helpQuestionId = StrHelper.Trim(helpQuestionId);
            ZYXModel.ls_help_answer model = SqlDB.GetOne<ZYXModel.ls_help_answer>(null, "[helpAnswer]", "helpQuestionId=" + helpQuestionId);
            if (null != model)
            {
                SqlDB.UpdateByKey<ZYXModel.ls_help_answer>(model);
            }
            var r = Comm.JsonHelper.ToStr(new { result = true, answerModel = model });
            return Content(string.IsNullOrEmpty(callback) ? r : string.Format("{0}({1})", callback, r));
 
  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
ASP API 接口接收与返回 是一个轻型的、安全的、跨网际的、跨语言的、跨平台的、跨环境的、跨域的、支持复杂对象传输的、支持引用参数传递的、支持内容输出重定向的、支持分级错误处理的、支持会话的、面向服务的高性能远程过程调用协议。 该版本直接解压后就可以使用,其中 属于公共文件。不论是客户端还是服务器端都需要这些文件。 是客户端文件,如果你只需要使用客户端,那么只要有上面那些公共文件和这个文件就可以使用了,使用时,直接在你的程序中包 phprpc_client.php 就可以,公共文件不需要单独包。 这三个文件是服务器端需要的文件。 其中 dhparams 目录中包的是加密传输时用来生成密钥的参数 dhparams.php 是用来读取 dhparams 目录中文件的类。 phprpc_server.php 是服务器端,如果你要使用 PHP 来发布 PHPRPC 服务,只需要包这个文件就可以了。公共文件和 dhparams.php 都不需要单独包。 PHP 4.3+、PHP 5、PHP 6 客户端要求开启 socket 扩展。 服务器端需要有 IIS、Apache、lighttpd 等可以运行 PHP 程序的 Web 服务器。 如果服务器端需要加密传输的能力,必须要保证 session 配置正确。 <?php include('php/phprpc_server.php'); //加载文件 function hello($name) { return'Hello ' . $name; } $server = new PHPRPC_Server(); //创建服务端 $server->add(array('hello', 'md5', 'sha1')); //数组形式一次注册多个函数 $server->add('trim'); //单一注册 $server->start(); //开启服务 ?> <?php include ("php/phprpc_client.php"); //加载文件 $client = new PHPRPC_Client('http://127.0.0.1/server.php'); //创建客户端 并连接服务端文件 echo$client->Hello("word"); //调用方法 返回 hello word ?> -------------------------------------------------- --------------------------------------------------- ------------------------------ 服务端其他说明: <?php include('php/phprpc_server.php'); //加载文件 function hello($name) { return'Hello ' . $name; } class Example1 { staticfunction foo() { return'foo'; } function bar() { return'bar'; } } $server = new PHPRPC_Server(); //创建服务端 $server->add('foo', 'Example1'); //静态方法直接调用 $server->add('bar', new Example1()); //非静态方法 需要例化 //注册别名调用 $server->add('hello', NULL, 'hi'); //第三参数是函数的别名 客户端通过别名来调用函数 $server->add('foo', 'Example1', 'ex1_foo'); $server->add('bar', new Example1(), 'ex1_bar'); $server->setCharset('UTF-8'); //设置编码 $server->setDebugMode(true); //打印错误 $server->setEnableGZIP(true); //启动压缩输出虽然可以让传输的数据量减少,但是它会占用更多的内存和 CPU,因此它默认是关闭的。 $server->start(); //开启服务 ?> -------------------------------------------------- --------------------------------------------------- ---------------------------
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值