Vue methods keeps requesting backend requests after using AJAX?

  var vm = new Vue({
    el: "-sharpapp",
    data: {
        nowpage:0,
        typenum:1
    }, 
    methods:{  
        test: function () {             
            $.ajax({
                url: "/xxx/xxx",
                data: {
                    PageNum: this.nowpage,
                    PageSize: this.typenum
                },
                type: "post",
                dataType: "json",
                success: function (data) {
                    ...
                     //pagination
                      $.jqPaginator("-sharppagination", {
                      ...
                      );
                    }
            });          
        }
    }
});
vm.test();
    
    vue,
Mar.06,2021

Vue.js conflicts with the callback function of the pagination control, and the solution has not been figured out for the time being. Replace it with your own manual paging

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3d230-2c34e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3d230-2c34e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?