热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

jQueryMobile網頁使用ASP.NETWebAPI服務

微軟的ASP.NETWebAPI框架,能以RESTful輕量級的架構風格,建立HTTP服務,讓多種不同的用戶端,如:手機、平板、電腦(PC),透過HTTP的GET、POST、P

微軟的 ASP.NET Web API 框架,能以 RESTful 輕量級的架構風格,建立 HTTP 服務,讓多種不同的用戶端,如: 手機、平板、電腦(PC),透過 HTTP 的 GET、POST、PUT、DELETE 方法來「存取(访问)」服務。

而 jQuery Mobile 框架,設計的目標,是希望能統一,市面上常見的手機、平板...等各種行動裝置。其特性如下:

  • 以 jQuery 為核心
  • 支援 HTML 5
  • 支援滑鼠(鼠标)、手指的觸碰事件
  • 內建多種佈景主題
  • 內建豐富的 UI 控制項(控件)
  • 和微軟的 ASP.NET MVC、Visual Studio 整合容易
  • 支援市面上大部分的行動裝置
  • 具備跨平台的相容性

本文提供一個可執行的範例下載,用 HTML 網頁 + jQuery Mobile,呼叫(调用) ASP.NET Web API 上的服務。

範例裡的 ASP.NET Web API 專案(project;项目),已透過 NuGet 安裝 CORS (Cross Origin Resource Sharing, 跨原始資源共用) [4]。

架構如下圖 1,執行畫面如下圖 2、圖 3。


圖 1 本文程式範例的架構

-------------------------------------------------
本文的程式範例下載:
https://files.cnblogs.com/files/WizardWu/190223.zip

Client-side: Index.html、Details.html
Server-side: ASP.NET Web API
---------------------------------------------------


圖 2 本文範例 Index.html 的執行畫面


圖 3 本文範例 Details.html 的執行畫面

 1 DOCTYPE html>
 2 <html>
 3 <head>
 4     <title>Indextitle>
 5     <meta name="viewport" content=">
 6     <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
 7     <script src="http://code.jquery.com/jquery-1.8.3.min.js">script>
 8     <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js">script>
 9     <script>
10         $(document).on('pageinit', "#Page1", createEmployee);
11 
12         function createEmployee() {
13             var IpAndPort = "http://192.168.0.10:8012"; //欲呼叫的 WebAPI 網址
14 
15             //$.getJSON("/api/EmployeesAPI",
16             $.getJSON(IpAndPort + "/api/EmployeeAPI",
17                 function (data) {
18                     //先清空 ListView 容器的內容
19                     $("#listviewContainer").empty();
20 
21                     //「動態」建立 ListView 主標籤
22                     $lv = $("
Client-side: Index.html
 1 DOCTYPE html>
 2 <html>
 3 <head>
 4   <title>Detailstitle>
 5   <meta name="viewport" content=" />
 6   <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
 7   <script src="http://code.jquery.com/jquery-1.8.3.min.js">script>
 8   <script>
 9     $(document).on('pageinit',"#Page1", function () {
10       //var id = @ViewBag.id;
11       var IpAndPort = "http://192.168.0.10:8012"; //欲呼叫的 WebAPI 網址
12       
13       $.getJSON(IpAndPort + "/api/EmployeeAPI/" +  window.location.search.substr(4),
14          function (data) {
15            $("
  • ").text("編號 : " + data.ID).appendTo("#listviewContainer"); 16 $("
  • ").text("姓名 : " + data.Name).appendTo("#listviewContainer"); 17 $("
  • ").text("年齡 : " + data.Age).appendTo("#listviewContainer"); 18 $("
  • ").text("部門 : " + data.Department).appendTo("#listviewContainer"); 19 $("#listviewContainer").listview(); 20 }); 21 }); 22 script> 23 <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js">script> 24 head> 25 <body> 26 <div data-role="page" id="Page1"> 27 <div data-role="header" data-theme="d"> 28 <h1>jQuery Mobileh1> 29 <h1>人事系統h1> 30 <a data-rel="back">上一頁a> 31 div> 32 <div data-role="content"> 33 <ul id="listviewContainer"> 34 ul> 35 div> 36 <div data-role="footer" data-theme="d"> 37 <h1>Copyright@2019 WizardWu公司h1> 38 <h1>All Rights Reservedh1> 39 div> 40 div> 41 body> 42 html>
  • Client-side: Details.html
     1 using System.Web.Http.Cors;
     2 using Server_AspNetWebAPI.Models;
     3 
     4 namespace Server_AspNetWebAPI.Controllers
     5 {
     6     public class EmployeeAPIController : ApiController
     7     {
     8         static EmployeeRepository rep = new EmployeeRepository();
     9 
    10         // GET api/
    11         //要連接的 client 網址、port number
    12         //[EnableCors(origins: "http://192.168.0.10:8012", headers: "*", methods: "*")]
    13         [EnableCors(origins: "*", headers: "*", methods: "*")]
    14         [AcceptVerbs("GET", "POST")]
    15         public List GetEmployees()
    16         {            
    17             return rep.GetEmployees();
    18         }
    19 
    20         // GET api//5
    21         [EnableCors(origins: "*", headers: "*", methods: "*")]
    22         [AcceptVerbs("GET", "POST")]
    23         public Employee GetEmployeeById(int id)
    24         {
    25             Employee emp = rep.GetEmployeeById(id);
    26 
    27             if (emp == null)
    28             {
    29                 throw new HttpResponseException(
    30                   System.Net.HttpStatusCode.NotFound);
    31             }
    32 
    33             return emp;
    34         }
    35 
    36         // POST api/
    37         [EnableCors(origins: "*", headers: "*", methods: "*")]
    38         [AcceptVerbs("POST")]
    39         public HttpResponseMessage CreateEmployee(Employee emp) //Post 新增
    40         {
    41             emp = rep.Add(emp);
    42             var respOnse= Request.CreateResponse(
    43               HttpStatusCode.Created, emp);
    44 
    45             string uri = Url.Link("DefaultApi", new { id = emp.ID });
    46 
    47             response.Headers.Location = new Uri(uri);
    48             return response;
    49         }
    50 
    51         // PUT api//5
    52         [EnableCors(origins: "*", headers: "*", methods: "*")]
    53         [AcceptVerbs("PUT")]
    54         public void EditEmployee(int id, Employee emp) //Put 修改
    55         {
    56             emp.ID = id;
    57             if (!rep.Update(emp))
    58             {
    59                 throw new HttpResponseException(
    60                   HttpStatusCode.NotFound);
    61             }
    62         }
    63 
    64         // DELETE api//5
    65         [EnableCors(origins: "*", headers: "*", methods: "*")]
    66         [AcceptVerbs("DELETE")]
    67         public HttpResponseMessage DeleteEmployee(int id) //Delete 刪除
    68         {
    69             rep.Delete(id);
    70             return new HttpResponseMessage(
    71               HttpStatusCode.NoContent);
    72         }
    73     }
    74 
    75 }
    Server-side: ASP.NET Web API, EmployeeAPIController.cs
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Web;
     5 
     6 namespace Server_AspNetWebAPI.Models
     7 {
     8     public class EmployeeRepository
     9     {
    10         List emps = new List();
    11 
    12         public EmployeeRepository()
    13         {
    14             Add(new Employee() { ID = 1, Name = "王小明", Age = 22, Department="業務部" });
    15             Add(new Employee() { ID = 2, Name = "李大華", Age = 33, Department = "資訊部" });
    16             Add(new Employee() { ID = 3, Name = "黃世傑", Age = 44, Department = "會計部" });
    17         }
    18 
    19         public List GetEmployees()
    20         {
    21             return emps;
    22         }
    23 
    24         public Employee GetEmployeeById(int id)
    25         {
    26             //var emp = emps.FirstOrDefault(e => e.ID == id);
    27             //if (emp == null)
    28             //    return System.Web.Http.Results.NotFoundResult();
    29 
    30             return emps.Find((x) => x.ID == id);
    31         }
    32 
    33         public Employee Add(Employee emp)
    34         {
    35             emps.Add(emp);
    36             return emp;
    37         }
    38 
    39         public void Delete(int id)
    40         {
    41             Employee emp = emps.Find((x) => x.ID == id);
    42             emps.Remove(emp);
    43         }
    44 
    45         public bool Update(Employee emp)
    46         {
    47             int idx = emps.FindIndex(x => x.ID == emp.ID);
    48             if (idx == -1)            
    49                 return false;
    50             emps.RemoveAt(idx);
    51             emps.Add(emp);
    52             return true;
    53         }
    54     }
    55 }
    Server-side: ASP.NET Web API, EmployeeRepository.cs

     

    ----------------------------------------------------------------------------------------------------------------------------------------
    再延伸改寫

    若 Client-side 使用的網頁,是用 ASP.NET MVC 開發,其可自動偵測使用者的上網裝置,為電腦或手機 (可再細分 Android 或 iPhone 系統),再自動調用該裝置,專用的 View 檢視 (.cshtml)。

    因為 ASP.NET MVC 已內建 Display Modes 功能,可從瀏覽器送出 Request Header 裡的 User-Agent 字串,判斷是從 PC、手機、iPhone、iPad、Android 裝置送出的請求,再自動調用該裝置的 View 檢視。

    本文 Client-side 的範例,可依 ASP.NET MVC 此功能,再進一步改寫,架構如下圖 4。


    圖 4 本文範例可再延伸改寫的架構


    圖 5 ASP.NET MVC 可自動判斷是從 PC、手機,所送出的請求,再自動調用該裝置的 View 檢視

    ----------------------------------------------------------------------------------------------------------------------------------------
    參考書籍:

    [1] 網頁程式設計 ASP.NET MVC 5.x 範例完美演繹 (繁體中文書籍), 作者:奚江華
    ISBN 13 /9789864769292
    ISBN 10 /9864769294
    http://www.eslite.com/product.aspx?pgid=1001113692716652&kw=%e5%a5%9a%e6%b1%9f%e8%8f%af&pi=0
    http://m.sanmin.com.tw/Product/index/006956107

    [2] jQuery Mobile 與 ASP.NET 實戰開發:跨平台行動介面與網頁應用程式設計 (繁體中文書籍, 已絕版), 作者:許薰尹、周季賢, Ch 12
    ISBN13:9789865912307
    http://www.sanmin.com.tw/Product/index/003707391

    [3] Sams Teach Yourself jQuery Mobile in 24 Hours
    https://www.amazon.com/Teach-Yourself-jQuery-Mobile-Hours/dp/0672335948

    ----------------------------------------------------------------------------------------------------------------------------------------
    參考資料:

    [4] Enable cross-origin requests in ASP.NET Web API 2
    https://docs.microsoft.com/en-us/aspnet/web-api/overview/security/enabling-cross-origin-requests-in-web-api

    ----------------------------------------------------------------------------------------------------------------------------------------
     


    推荐阅读
    • SpringMVC RestTemplate的几种请求调用(转)
      SpringMVCRestTemplate的几种请求调用(转),Go语言社区,Golang程序员人脉社 ... [详细]
    • 探讨 HDU 1536 题目,即 S-Nim 游戏的博弈策略。通过 SG 函数分析游戏胜负的关键,并介绍如何编程实现解决方案。 ... [详细]
    • 深入解析SpringMVC核心组件:DispatcherServlet的工作原理
      本文详细探讨了SpringMVC的核心组件——DispatcherServlet的运作机制,旨在帮助有一定Java和Spring基础的开发人员理解HTTP请求是如何被映射到Controller并执行的。文章将解答以下问题:1. HTTP请求如何映射到Controller;2. Controller是如何被执行的。 ... [详细]
    • 在尝试使用C# Windows Forms客户端通过SignalR连接到ASP.NET服务器时,遇到了内部服务器错误(500)。本文将详细探讨问题的原因及解决方案。 ... [详细]
    • yikesnews第11期:微软Office两个0day和一个提权0day
      点击阅读原文可点击链接根据法国大选被黑客干扰,发送了带漏洞的文档Trumps_Attack_on_Syria_English.docx而此漏洞与ESET&FireEy ... [详细]
    • 在Fedora 31上部署PostgreSQL 12
      本文详细介绍如何在Fedora 31操作系统上安装和配置PostgreSQL 12数据库。包括环境准备、安装步骤、配置优化以及安全设置,确保数据库能够稳定运行并提供高效的性能。 ... [详细]
    • ListView简单使用
      先上效果:主要实现了Listview的绑定和点击事件。项目资源结构如下:先创建一个动物类,用来装载数据:Animal类如下:packagecom.example.simplelis ... [详细]
    • 深入剖析JVM垃圾回收机制
      本文详细探讨了Java虚拟机(JVM)中的垃圾回收机制,包括其意义、对象判定方法、引用类型、常见垃圾收集算法以及各种垃圾收集器的特点和工作原理。通过理解这些内容,开发人员可以更好地优化内存管理和程序性能。 ... [详细]
    • 搭建Jenkins、Ant与TestNG集成环境
      本文详细介绍了如何在Ubuntu 16.04系统上配置Jenkins、Ant和TestNG的集成开发环境,涵盖从安装到配置的具体步骤,并提供了创建Windows Slave节点及项目构建的指南。 ... [详细]
    • 嵌入式开发环境搭建与文件传输指南
      本文详细介绍了如何为嵌入式应用开发搭建必要的软硬件环境,并提供了通过串口和网线两种方式将文件传输到开发板的具体步骤。适合Linux开发初学者参考。 ... [详细]
    • 本文介绍了如何使用JavaScript的Fetch API与Express服务器进行交互,涵盖了GET、POST、PUT和DELETE请求的实现,并展示了如何处理JSON响应。 ... [详细]
    • Redux入门指南
      本文介绍Redux的基本概念和工作原理,帮助初学者理解如何使用Redux管理应用程序的状态。Redux是一个用于JavaScript应用的状态管理库,特别适用于React项目。 ... [详细]
    • 深入解析Serverless架构模式
      本文将详细介绍Serverless架构模式的核心概念、工作原理及其优势。通过对比传统架构,探讨Serverless如何简化应用开发与运维流程,并介绍当前主流的Serverless平台。 ... [详细]
    • 深入解析Java虚拟机(JVM)架构与原理
      本文旨在为读者提供对Java虚拟机(JVM)的全面理解,涵盖其主要组成部分、工作原理及其在不同平台上的实现。通过详细探讨JVM的结构和内部机制,帮助开发者更好地掌握Java编程的核心技术。 ... [详细]
    • 微信小程序:授权登录与手机号绑定
      本文详细介绍了微信小程序中用户授权登录及绑定手机号的流程,结合官方指引和实际开发经验,提供了一套完整的实现方案,帮助开发者更好地理解和应用。 ... [详细]
    author-avatar
    EGO-Underwear
    这个家伙很懒,什么也没留下!
    PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
    Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有