0

我想强制我的现代页面每 3000 秒刷新一次 >> 所以我开发了一个 spfx 扩展 >> 在我的 .ts 中我添加了以下代码:-

export default class HelloWorldApplicationCustomizer
  extends BaseApplicationCustomizer<IHelloWorldApplicationCustomizerProperties> {

    @override

    public onInit(): Promise<void> {
      Log.info(LOG_SOURCE, `Initialized ${strings.Title}`);
  
      const cssUrl: string = this.properties.cssurl;
      const scriptUrl: string = this.properties.scripturl;
      if (cssUrl) {
          // inject the style sheet
          const head: any = document.getElementsByTagName("head")[0] || document.documentElement;
          let customStyle: HTMLLinkElement = document.createElement("link");
          customStyle.href = cssUrl;
          customStyle.rel = "stylesheet";
          customStyle.type = "text/css";

          const head2: any = document.getElementsByTagName("head")[0] || document.documentElement;
          let customScript: HTMLLinkElement = document.createElement("link");
          customScript.href = scriptUrl;
          customScript.rel = "script";
          customScript.type = "text/javascript";

          head.insertAdjacentElement("beforeEnd", customStyle);
          head2.insertAdjacentElement("beforeEnd", '<META HTTP-EQUIV="refresh" CONTENT="3000">');
      }
  
      return Promise.resolve();
    }

现在,当我将 SPFX 添加到我的网站时,页面不会每 3000 秒加载一次。所以似乎head2.insertAdjacentElement("beforeEnd", '<META HTTP-EQUIV="refresh" CONTENT="3000">');没有任何效果。虽然我有一个正确应用的 customStyle 。有什么建议吗?


R 是否在 REML lmer(lmerTest 包)计算中包含对数似然函数的常数?

我想使用一些选择标准来比较两个模型。但是,与使用 BIC 和 CAIC 的结果相比,我使用 AICC 得到的结果不同。根据 Gurka (2006) 的说法,这两种类型的选择标准会根据模型公式做出不同的反应。显然,根据 Gurka (2006),它们的适用性不同,具体取决于模型公式中是否包含对数似然函数的常数。在 SAS procmixed 中,不包括常量。但是,我无法确定它是否包含在 with 的模型计算中lmerlmerTest因为我不正确理解模型公式。如果有人知道答案,我将非常感激:)

文献:Gurka, MJ (2006):在 REML 下选择最佳线性混合模型。在:美国统计学家 60 (1), S. 19–26。

4

0 回答 0