<html> <head><title>504 Gateway Time-out</title></head> <body> <center><h1>504 Gateway Time-out</h1></center> <hr><center>nginx</center> </body> </html>

<form>

    <table>
        <div id="divhenshua">
            <Select v-model="vvmodel" disabled style="width:200px">
                <Option v-for="item in listhenshua" :value="item.henshuaDescription" :key="item.henshuaName">{{ item.henshuaDescription }}</Option>
            </Select>
        </div>

    </table>
</form>

<script>
    $(function () {
        $.get("/henshua.sp?method=queryhenshuaList", function (res) {
            console.log("henshua", res);
            vhenshua.listhenshua = res.rows;
        });
    });

    var vhenshua = new Vue({
        el: "-sharpdivhenshua",
        data: {
            listhenshua: [],
            vvmodel:""
        }

    });

</script>
</body>
< hr >

has introduced vue, to see that network has something, and json can also get it. There is no error.
the style returned is

.
 {
    "total": 1,
    "rows": [
        {
            "henshuaName": "2",
            "henshuaDescription": "bbbk",
        }
    ]
}
  1. I have tried that the front-end console has data output and can get to data
  2. there is no error in writing.
  3. Please all the great gods to guide me as a rookie
  4. Thank you for your patience
Mar.28,2021

data must be a function, closing

Menu