0

我正在尝试使用 google API 导入联系人列表。谷歌提供的这个例子之一是

print "<a class=login href='$auth'>Connect Me!</a>";

这里

$auth = $client->createAuthUrl();

在这$auth给出了一个 url,它将被称为 onclick of Connect Me。这是我想在 CodeIgniter 中实现的一个简单的 php 示例。所以我把这个示例逻辑移到了一个模型类中。在这里,我想将 url 响应保存到 DB,然后发送到视图。
如何点击 $client->createAuthUrl()模型类提供的 url。

4

1 回答 1

0

从您的控制器调用模型,然后将数据传递到官方文档中定义的视图herehere,如下所示:

Class YourController Extends CI_Controller
{

.
.
.

function yourFunction()
{
  $this->load->model('Model_yourModel');
  $data['auth'] = $this->Model_yourModel->createAuthUrl();

  $this->load->view('yourView', $data);
}

你可以像这样yourView.php使用它

print "<a class=login href='$auth'>Connect Me!</a>";
于 2013-01-25T18:46:22.843 回答