3

ForeSeeの API ドキュメントを見つけることができず、ランダムに表示される ForeSee Survey プロンプト ダイアログに関連するバグ レポートが届きました。キャッシュと Cookie をクリアしようとしましたが、まだ表示されません。javascript で表示をトリガーする方法はありますか? それとも、特定の URL パラメーターを使用するのでしょうか?

foresee-trigger.js配列を更新して、FSR.siteslocalhost への参照を含めました。

var FSR = {
    'version': '7.0.0',
    'date': '01/01/2011',
    'enabled': true,
    'auto' : true,
    'encode' : true,
    'files': './foresee/', //default path when no match below         
    'id': 'etc',
    'sites': [
    /* several existing ones, etc.*/
    {
        name: 'localhost',
        path: 'localhost',
        files: '//localhost/subdirectory/foresee/',
        domain: 'localhost'
    },{
        path: '.',
        domain: 'default'
    }]
};
4

2 に答える 2

4

forsee-trigger.js ファイルと同じディレクトリにある "fsradmin.html" ページをクリックして、現在のセッションのサンプリング パーセンテージを手動で設定できるはずです。たとえば、localhost/YourApp/scripts/foresee/fsradmin.html です。サンプリング パーセンテージを 100% に設定すると、調査が確実に行われます。

別のオプションは、ここで forsee-surveydef.js ファイルの実際のサンプリング パーセンテージを変更することです。

基準: {

   sp: 75,  //this is the sampling % - set it to 100 to ensure that it appears
   lf: 1  // loyalty factor, (the # of pages the user has to hit before it appears)

}、

2 番目のオプションを選択した場合は、コードをデプロイする前に、必ずサンプリング % を元の値に設定してください。そうしないと、全員が常にアンケートを取得してしまいます。

最後に、ドキュメントへのリンクを次に示します: http://demo.foreseeresults.com/_code/docs/ForeSee_Trigger_Code_Implementation_Guide.pdf

于 2012-05-22T04:47:49.243 に答える