我正在尝试使用google API导入联系人列表。谷歌提供的这个例子之一是
print "<a class=login href='$auth'>Connect Me!</a>";
这里
$auth = $client->createAuthUrl();
在此$auth
中提供了一个名为on Connect Me
的网址。这是一个简单的php示例示例,我想在CodeIgniter中实现它。所以我将这个示例逻辑移动到了一个模型类。在这里,我想保存对DB的URL响应,然后发送到视图
如何从模型类中获取$client->createAuthUrl()
提供的URL。
答案 0 :(得分:0)
从您的控制器调用模型,然后将数据传递到官方文档here和here中定义的视图,如下所示:
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>";