const response = await fetch('https://yourawesomebackend.com/api/person/getpeople');
const content = await response.json();
// Now manipulate the DOM with the response.
在后端,您可能希望这样做-
[Route("api/[controller]/[action]")]
[ApiController]
public class PersonController : ControllerBase
{
public IActionResult GetPeople()
{
// read people from database
var people = getFromDatabase();
return Ok(people);
}
}
2条答案
按热度按时间cbeh67ev1#
您需要做的第一件事是打开后端CORS设置。它连接到Vue端的端点,您可以使用axios框架拉取数据。以下是https://www.freecodecamp.org/news/how-to-build-an-spa-with-vuejs-and-c-using-net-core/示例
2eafrhcq2#
所有你需要做的就是通过API调用后端。通过GET方法获取数据,通过POST方法发送数据。假设你想从后端获取人员列表。你可以这样做-
在后端,您可能希望这样做-
希望这个有用。