JS入門第二節

来源:https://www.cnblogs.com/20200109-zwh/archive/2023/08/19/17641351.html
-Advertisement-
Play Games

![image](https://img2023.cnblogs.com/blog/2609621/202308/2609621-20230818173620254-1612568416.png) ```js ``` ![image](https://img2023.cnblogs.com/blog ...


image

<!--1.迴圈輸出1~100歲-->
<script>
        for(i = 1; i <= 100; i++){
            console.log(i + "歲");
        }
</script>
<!--計算1~100所有的偶數和-->
<script>
        let sum = 0;
        for(i = 1; i <= 100; i++){
            if(i % 2 === 0){
                sum += i;
            }
        }
        console.log(sum);
</script>
<!--列印五個小星星-->
<script>
        for(i = 0; i < 5; i++){
            document.write("*");
        }
</script>
<!--迴圈列印數組元素-->
<script>
        let hero = ['馬超', '趙雲', '張飛', '關羽', '黃忠'];
        for(i = 0; i < hero.length; i++){
            console.log(hero[i]);
        }
</script>

image

<script>
        let x = prompt('請輸入行數:');
        let y = prompt('請輸入列數')
        for(i = 0; i < x; i++){
            for(j = 0; j < y; j++){
               document.write("*");
            }
            document.write(`<br/>`);
        }
</script>

image

<script>
        let x = prompt('請輸入行數:');
        let y = prompt('請輸入列數')
        for(i = 0; i < x; i++){
            for(j = 0; j <= i; j++){
               document.write("*");
            }
            document.write(`<br/>`);
        }
</script>

image

<!DOCTYPE>
<html>
<head>
    <style>
        span {
          display: inline-block;
          width: 100px;
          padding: 5px 10px;
          border: 1px solid pink;
          margin: 2px;
          border-radius: 5px;
          box-shadow: 2px 2px 2px rgba(255, 192, 203, .4);
          background-color: rgba(255, 192, 203, .1);
          text-align: center;
          color: hotpink;
        }
      </style>
</head>
<body>
    <script>
        for(i = 1; i <= 9; i++){
            for(j = 1; j <= i; j++){
               document.write(`<span>${i} X ${j} = ${i*j}</span>`);
            }
            document.write(`<br/>`);
        }
    </script>
</body>
</html>

<script>
        let arr = new Array(2, 6, 1, 7, 4);
        let sum = 0;
        let avg = 0;
        for(i = 0; i < arr.length; i++){
            sum += arr[i];
        }    
        avg = sum / arr.length;
        console.log(`sum = ${sum}, avg = ${avg}`);
</script>

<script>
        let arr = [2, 6, 1, 77, 52, 25, 7];
        let max = Number.MIN_VALUE;
        let min = Number.MAX_VALUE;
        for(i = 0; i < arr.length; i++){
            // 三元表達式和條件判斷效果相同
            max = arr[i] > max ? arr[i] : max;
            if(arr[i] < min){
                min = arr[i];
            }
        }
        console.log('最大值為: ' + max);
        console.log('最小值為: ' + min);     
</script>

<script>
        let arr = [2, 0, 6, 1, 77, 0, 52, 0, 25, 7];
        // 數組添加元素首先需要初始化,使用new關鍵字或者賦值空數組 []
        let newArr = new Array();
        for(i = 0; i < arr.length; i++){
            if(arr[i] >= 10){
                newArr.push(arr[i]);
            }
        }     
        console.log(newArr);
</script>

<script>
        let arr = [2, 0, 6, 1, 77, 0, 52, 0, 25, 7];
        let newArr = [];
        for(i = 0; i < arr.length; i++){
            if(arr[i] !== 0){
                newArr.unshift(arr[i]);
            }
        }     
        console.log(newArr);
</script>

<!DOCTYPE>
<html>
<head>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .box {
            display: flex;
            width: 700px;
            height: 300px;
            border-left: 1px solid pink;
            border-bottom: 1px solid pink;
            margin: 50px auto;
            justify-content: space-around;
            align-items: flex-end;
            text-align: center;
        }

        .box>div {
            display: flex;
            width: 50px;
            background-color: pink;
            flex-direction: column;
            justify-content: space-between;
        }

        .box div span {

            margin-top: -20px;
        }

        .box div h4 {
            margin-bottom: -35px;
            width: 70px;
            margin-left: -10px;
        }
    </style>
</head>
<body>
    <script>
        // 定義一個數組,迴圈四次存儲數據
        let arr = new Array();
        for(i = 0; i < 4; i++){
            arr.push(prompt(`請輸入第${i + 1}季度的數據:`));
        }
        // 盒子開始
        document.write(`<div class="box">`);            
        // 盒子中間
        for(let i = 0; i < arr.length; i++){
            document.write(`
                <div style="height: ${arr[i]}px;">
                    <span>${arr[i]}</span>
                    <h4>第${i + 1}季度</h4>
                </div>
            `);
        }
        // 盒子末尾
        document.write(`</div>`);
    </script>   
</body>
</html>

<script>
        let arr = [4, 2, 5, 1, 3];
        arr.sort(function(a, b){
            return a - b;
        });
        console.log('升序排序: ' + arr);
        arr.sort(function(a, b){
            return b - a;
        });
        console.log('降序排序: ' + arr);
</script>

<script>
        function sayHello(){
            document.write('hi~');
        }
        // 這裡我沒有給列印的乘法表做樣式
        function printMultiplicationTable(){
            for(let i = 1; i <= 9; i++){
                for(let j = 1; j <= 9; j++){
                    document.write(`${i} X ${j} = ${i * j}` + '\t');
                }
                document.write(`<br />`);
            }
        }
        sayHello();
        document.write(`<br />`);
        printMultiplicationTable();    
</script>

<script>
        // 計算兩個數的和
        function calNum(){
            let n = 10;
            let m = 56;
            return n + m;
        }
        // 計算 1- 100 之間所有數的和
        function calNum2(){
            let sum = 0;
            for(let i = 1; i <= 100; i++){
                sum += i;
            }
            return sum;
        }
        // 調用兩個函數,控制台列印
        console.log(calNum());
        console.log(calNum2());
        // 缺陷就是不能求指定元素的和,也就是不能傳參,復用的範圍比較小   
</script>   

<script>
        function calNum(num1, num2){
            document.write(num1 + num2);
        }
        calNum(100, 899);  
</script>  

<script>
        function calScore(score){
            let sum = 0;
            for(let i = 0; i < score.length; i++){
                sum += score[i];
            }
            document.write('學生的總分為: ' + sum);
        }
        let grade = [90, 90, 90];
        calScore(grade);
</script>  

<script>
        function maxNum(num1, num2){
            return num1 > num2 ? num1 : num2;
        }
        function max(arr){
            let maxNumber = Number.MIN_VALUE;
            for(let num in arr){
                maxNumber = num > maxNumber ? num : maxNumber;
            }
            return maxNumber;
        }
        function min(arr){
            let minNumber = Number.MAX_VALUE;
            for(let num in arr){
                minNumber = num < minNumber ? num : minNumber;
            }
            return minNumber;
        }

        let arr = [1, 2, 3];
        document.write(maxNum(1, 3))
        document.write(max(arr));
        document.write(min(arr));
</script> 

<script>
        function calculateTime(second){
            let h = parseInt(second / 60 / 60 % 24) ;
            let m = parseInt(second / 60 % 60);
            let s = parseInt(second  % 60);
            // 不足兩位需要拼接 0
            h = h < 10 ? '0' + h : h;
            m = m < 10 ? '0' + m : m;
            s = s < 10 ? '0' + s : s;

            document.write(`轉化結果為: ${h}時 ${m}分 ${s}秒`);
        }
        calculateTime(prompt('輸入總的秒數:'));    
</script> 

<script>
        let goods = {
            name : '小米小米10 青春版',
            num : '100012816024',
            weight : '0.55kg',
            address: '中國大陸'
        } 
        console.log(goods);  
</script>

<script>
        let goods = {
            name : '小米小米10 青春版',
            num : '100012816024',
            weight : '0.55kg',
            address: '中國大陸'
        }
        goods.name = '小米10PLUS';
        goods.color = '粉色'
        for(let e in goods){
            document.write(e + ':' +goods[e]);
            document.write(`<br />`)
        }
        console.log(goods);  
</script>

<script>
        // 數組套對象
        let students = [
            {name : '小明', age : 18, gender : '男', hometown : '河北省'},
            {name : '小紅', age : 19, gender : '女', hometown : '河北省'},
            {name : '小剛', age : 17, gender : '男', hometown : '山西省'},
            {name : '小麗', age : 18, gender : '女', hometown : '山東省'},
        ];
        for(let i = 0; i < students.length; i++){
            console.log(`${students[i].name} ${students[i].age} ${students[i].gender} ${students[i].hometown}`)
        }
</script>

<!DOCTYPE>
<html>
<head>
    <style>
        table {
            /*表格寬度,文本居中*/
            width : 600px;
            text-align: center;
        }
        table,
        th,
        td {
            border: 1px solid #ccc;
            border-collapse: collapse;
        }
        caption {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        tr {
            height: 40px;
            cursor: pointer;
        }
        table tr:nth-child(1) {
            background-color: #ddd;
        }
        table tr:not(:first-child):hover {
            background-color: #eee;
        }
    </style>    
</head>
<body>
    
    <table>
        <caption>學生信息表</caption>
        <tbody>
            <tr>
                <th>序號</th>
                <th>姓名</th>
                <th>性別</th>
                <th>年齡</th>
                <th>家鄉</th>   
            </tr>        
            <script>
                let students = [
                    {name : '小明', age : 18, gender : '男', hometown : '河北省'},
                    {name : '小紅', age : 19, gender : '女', hometown : '河北省'},
                    {name : '小剛', age : 17, gender : '男', hometown : '山西省'},
                    {name : '小麗', age : 18, gender : '女', hometown : '山東省'},
                ];
                for(let i = 0; i < students.length; i++){
                    document.write(`
                        <tr>
                            <td>${i + 1}</td>
                            <td>${students[i].name}</td>                    
                            <td>${students[i].age}</td>
                            <td>${students[i].gender}</td>
                            <td>${students[i].hometown}</td>           
                        </tr>                   
                    `);
                }
            </script>                              
        </tbody>
    </table>       
</body>
</html>

<script>
        let hero = ['趙雲', '黃忠', '關羽', '張飛', '馬超', '劉備', '曹操'];
        // 索引 0 - 6 去生成隨機數
        let idx = Math.floor(Math.random() * (6 + 1));
        document.write(hero[idx]);    
</script>

<script>
        let hero = ['趙雲', '黃忠', '關羽', '張飛', '馬超', '劉備', '曹操'];
        // 索引 0 - 6 去生成隨機數
        let idx = Math.floor(Math.random() * hero.length);
        document.write(hero[idx]);    
        hero.splice(idx, 1);
</script>

<script>
        let random = Math.floor(Math.random() * (10 + 1));
        while(true){
            let num = prompt('請輸入您選擇的數字: ');
            if(num == random){
                alert('猜對了');
                break;
            }else if(num > random){
                alert('猜大了');
            }else{
                alert('猜小了');
            }
        }
</script>

    <script>
        // 準備十六進位的數組
        let arr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'];
        function getRandomColor(param){
            if(!param){
                let r = Math.floor(Math.random() * 256);
                let g = Math.floor(Math.random() * 256);
                let b = Math.floor(Math.random() * 256);

                return `rgb(${r}, ${g}, ${b})`;
            }else {
                let str = '#';
                for(let i = 0; i < 6; i++){
                    let idx = Math.floor(Math.random() * arr.length);
                    str += arr[idx];
                }
                return str;    
            }
        }
        console.log(getRandomColor());
        console.log(getRandomColor(true));
        console.log(getRandomColor(false));
</script>

<html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>學車線上首頁</title>
    <link rel="stylesheet" href="style.css">
    <style>

    </style>
</head>

<body>

    <!-- 4. box核心內容區域開始 -->
    <div class="box w">
        <div class="box-hd">
            <h3>精品推薦</h3>
            <a href="#">查看全部</a>
        </div>
        <div class="box-bd">
            <ul class="clearfix">
                <!-- <li>
                    <a href="#">
                        <img src="course01.png" alt="">
                        <h4>
                            Think PHP 5.0 博客系統實戰項目演練
                        </h4>
                        <div class="info">
                            <span>高級</span> • <span>1125</span>人在學習
                        </div>
                    </a>
                </li> -->
                <script>
                    let data = [
                        {
                            src: 'course01.png',
                            title: 'Think PHP 5.0 博客系統實戰項目演練',
                            num: 1125
                        },
                        {
                            src: 'course02.png',
                            title: 'Android 網路動態圖片載入實戰',
                            num: 357
                        },
                        {
                            src: 'course03.png',
                            title: 'Angular2大前端商城實戰項目演練',
                            num: 22250
                        },
                        {
                            src: 'course04.png',
                            title: 'AndroidAPP實戰項目演練',
                            num: 389
                        },
                        {
                            src: 'course05.png',
                            title: 'UGUI源碼深度分析案例',
                            num: 124
                        },
                        {
                            src: 'course06.png',
                            title: 'Kami2首頁界面切換效果實戰演練',
                            num: 432
                        },
                        {
                            src: 'course07.png',
                            title: 'UNITY 從入門到精通實戰案例',
                            num: 888
                        },
                        {
                            src: 'course08.png',
                            title: 'Cocos 深度學習你不會錯過的實戰',
                            num: 590
                        },
                        {
                            src: 'course04.png',
                            title: '自動添加的模塊',
                            num: 1000
                        }
                    ]

                    for (let i = 0; i < data.length; i++) {
                        document.write(`
                        <li>
                            <a href="#">
                                <img src=${data[i].src} title="${data[i].title}">
                                <h4>
                                   ${data[i].title}
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>${data[i].num}</span>人在學習
                                </div>
                            </a>
                        </li>
                      `)
                    }
                </script>
                        <li>
                            <a href="#">
                                <img src="course01.png" title="Think PHP 5.0 博客系統實戰項目演練">
                                <h4>
                                   Think PHP 5.0 博客系統實戰項目演練
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>1125</span>人在學習
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course02.png" title="Android 網路動態圖片載入實戰">
                                <h4>
                                   Android 網路動態圖片載入實戰
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>357</span>人在學習
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course03.png" title="Angular2大前端商城實戰項目演練">
                                <h4>
                                   Angular2大前端商城實戰項目演練
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>22250</span>人在學習
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course04.png" title="AndroidAPP實戰項目演練">
                                <h4>
                                   AndroidAPP實戰項目演練
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>389</span>人在學習
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course05.png" title="UGUI源碼深度分析案例">
                                <h4>
                                   UGUI源碼深度分析案例
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>124</span>人在學習
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course06.png" title="Kami2首頁界面切換效果實戰演練">
                                <h4>
                                   Kami2首頁界面切換效果實戰演練
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>432</span>人在學習
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course07.png" title="UNITY 從入門到精通實戰案例">
                                <h4>
                                   UNITY 從入門到精通實戰案例
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>888</span>人在學習
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course08.png" title="Cocos 深度學習你不會錯過的實戰">
                                <h4>
                                   Cocos 深度學習你不會錯過的實戰
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>590</span>人在學習
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course04.png" title="自動添加的模塊">
                                <h4>
                                   自動添加的模塊
                                </h4>
                                <div class="info">
                                    <span>高級</span> • <span>1000</span>人在學習
                                </div>
                            </a>
                        </li>
                      
            </ul>
        </div>
    </div>
</body></html>
* {
    margin: 0;
    padding: 0;
}
.w {
    width: 1200px;
    margin: auto;
}
body {
    background-color: #f3f5f7;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
.clearfix:before,.clearfix:after {
    content:"";
    display:table; 
  }
  .clearfix:after {
    clear:both;
  }
  .clearfix {
     *zoom:1;
  }   
 

.box {
    margin-top: 30px;
}
.box-hd {
    height: 45px;
}
.box-hd h3 {
    float: left;
    font-size: 20px;
    color: #494949;
}
.box-hd a {
    float: right;
    font-size: 12px;
    color: #a5a5a5;
    margin-top: 10px;
    margin-right: 30px;
}
/* 把li 的父親ul 修改的足夠寬一行能裝開5個盒子就不會換行了 */
.box-bd ul {
    width: 1225px;
}
.box-bd ul li {
    position: relative;
    top: 0;
    float: left;
    width: 228px;
    height: 270px;
    background-color: #fff;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all .3s;
   
}
.box-bd ul li a {
    display: block;
}
.box-bd ul li:hover {
    top: -8px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
}
.box-bd ul li img {
    width: 100%;
}
.box-bd ul li h4 {
    margin: 20px 20px 20px 25px;
    font-size: 14px;
    color: #050505;
    font-weight: 400;
}
.box-bd .info {
    margin: 0 20px 0 25px;
    font-size: 12px;
    color: #999;
}
.box-bd .info span {
    color: #ff7c2d;
}









您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 這篇文章總結了常用的架構圖類型,可以借鑒筆者提供的模板,快速地產出符合業務需要的架構圖。 為什麼要畫好一幅架構圖?一幅漂亮的架構圖既是創作者的深度結構化思考和表達,對於讀者來說也更加容易理解架構所要表達的意思。 然而不擅長畫圖的程式員,在大腦里已經有了思路,如何快速能夠產出精美的架構圖呢?這篇文章幫 ...
  • [TOC] # 本篇前瞻 歡迎來go語言的基礎篇,這裡會幫你梳理一下go語言的基本類型,註意本篇有參考[go聖經](https://gopl-zh.github.io/),如果你有完整學習的需求可以看一下。另外,go語言的基本類型比較簡單,介紹過程就比較粗暴,不過我們需要先從一個例題開始。 # Le ...
  • - LogServiceImpl ``` @Service @Slf4j public class LogServiceImpl implements LogService { private static final String TOPIC_NAME = "ods_link_visit_topi ...
  • 本文通過簡單的示例代碼和說明,讓讀者能夠瞭解微服務如何集成RabbitMq 之前的教程 https://www.cnblogs.com/leafstar/p/17641358.html 在這裡我將介紹Centos中通過docker進行安裝RabbitMq 1.首先你已經有一臺可以使用的虛擬機(教程很 ...
  • ## 背景 前段時間開源的 [STC](https://github.com/long-woo/stc) 工具,這是一個將 OpenApi 規範的 Swagger/Apifox 文檔轉換成代碼的工具。可以在上一篇([《OpenApi(Swagger)快速轉換成 TypeScript 代碼 - STC ...
  • - 部署ZK ``` docker run -d --name zookeeper -p 2181:2181 -t wurstmeister/zookeeper ``` - 部署Kafka ``` docker run -d --name xdclass_kafka \ -p 9092:9092 \ ...
  • ## Consul 概述 Consul 是一個可以提供服務發現,健康檢查,多數據中心,key/Value 存儲的分散式服務框架,用於實現分散式系統的發現與配置。Cousul 使用 Go 語言實現,因此天然具有可移植性,安裝包僅包含一個可執行文件,直接啟動即可運行,方便部署 ## Consul 安裝與 ...
  • 當您擁有了Codespaces之後,可能還需要做一些深度定製,讓免費伺服器預裝一些適合你特定需求的內容,請隨本篇一同實戰如何實現後臺伺服器的個性化配置 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...