Django-Ajax:这是将数据返回到Ajax请求的最Python语言吗?

时间:2018-07-18 15:45:44

标签: python ajax django

/** * Returns the associated resource, accounting for bad references. * @return Resource|null */ public function getResource() { if (is_null($this->_resource_is_valid)) { try { // We need to call a method that triggers a lazy load if ($this->resource && $this->resource->getID()) { $this->_resource_is_valid = true; } } catch (\Doctrine\ORM\EntityNotFoundException $enf) { $this->_resource_is_valid = false; // consider creating a new resource object. } } if ($this->_resource_is_valid) { return $this->resource; } return null; } 只是一个查询集,它显示在html_as_template中,我正在通过Ajax刷新(包含来自数据库的更新数据)。

两个问题:

  1. 这是最“有效”的方法吗?
  2. 我认为article_cards.html也应该起作用吗?
render_to_string

0 个答案:

没有答案