こんにちは、smartGWT で Piwik を使用して統計を作成しようとしていますが、使用する方法は次のとおりです。
public static native void PiwikReport(String email)/*-{
window.alert("hello1");
var pkBaseURL ="https://hpsmartplanner.com/piwik/piwik.js";
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 1);
piwikTracker.setCustomVariable(1, "User Name",email , "page");
piwikTracker.setCustomVariable(2, "Type", "Channel Partner" , "page");
piwikTracker.setCustomVariable(3, "Event", "Signin" , "page");
piwikTracker.trackPageView();
window.alert("hello");
}-*/;
そしてHTMLファイルで
<!-- Piwik -->
<script type="text/javascript" >
var _paq = _paq || [];
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://hpsmartplanner.com/piwik/";
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "1"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Piwik Code -->
hello1「最初のアラート」を出力しますが、2番目のアラートは出力しませんでした
誰でも助けてください。ありがとう。