在方法中调用动作标签

时间:2019-05-31 13:14:44

标签: javascript php jquery ajax slim

我想通过gmail登录我的网站,并且我正在为此使用google API,主要的问题是当google登录按钮为回调方法(onSignIn())时,我想在用于实现路由苗条行为的方法中添加操作标记。

当表单可用时(通过在form标签中提供操作),我成功地实现了整个过程,所以我有点困惑我该怎么做。

这是我的代码:

<div class="g-signin2" data-onsuccess="onSignIn">
function onSignIn(googleUser) {
  var profile = googleUser.getBasicProfile();
  console.log('ID: ' + profile.getId());
  // Do not send to your backend! Use an ID token instead.
  console.log('Name: ' + profile.getName());
  console.log('Image URL: ' + profile.getImageUrl());
  console.log('Email: ' + profile.getEmail());
  // This is null if the 'email' scope is not present.

  alert(profile.getEmail());

  // here i want to call the route.php
}

方法中的调用动作标签行为

0 个答案:

没有答案