read(){ // $.get("/get_txt",function (str) { // console.log(str); // // // }) // let ion; // this.tableData=ion; $.ajax({ type: "POST", url: "post_txt", data: {}, traditional: true, // async: false, success: function (rtn) { console.log(rtn); // ion=rtn; this.tableData } }); }请用类似这种方式写一下
时间: 2024-02-05 11:04:22 浏览: 131
使用ajax取得数据
我可以为您提供一个类似的示例代码,如下所示:
```
function read() {
$.ajax({
type: "POST",
url: "/get_data",
data: {
// 如果需要传递参数,可以在这里添加
},
success: function(response) {
console.log(response);
// 处理获取到的数据
},
error: function(xhr, status, error) {
console.log(xhr);
console.log(status);
console.log(error);
// 处理错误情况
}
});
}
```
请注意,这只是一个示例代码,具体的实现方式需要根据您的实际需求进行调整。同时,如果您需要在函数内部使用 Vue 的 this,可以在函数外部将 this 赋值给一个变量,然后在函数内部使用该变量。
阅读全文