ie 对https警告怎么关闭

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ie 对https警告怎么关闭相关的知识,希望对你有一定的参考价值。

参考技术A 方法如下:
  1、点击IE浏览器“工具”菜单,选择“Internet选项”,打开“Internet选项”窗口。切换到“安全”选项卡。如图:
  2、默认选中的就是Internet区域,点击下面的“自定义级别”按钮,打开“安全设置
-
Internet区域”窗口。如图:
  3、向下滚动列表,找到“显示混合内容”选项,默认选中的“提示”,所以才会在访问https网站时弹出“安全警告”提示窗口,现在把它修改为“启用”,确定,关闭窗口。

“警告:无法对未安装的组件执行 React 状态更新。” [关闭]

【中文标题】“警告:无法对未安装的组件执行 React 状态更新。” [关闭]【英文标题】:"Warning: Can't perform a React state update on an unmounted component." [closed] 【发布时间】:2021-11-09 22:26:09 【问题描述】:

我正在使用 React Native CLI 和 RealmDB 创建一个应用程序来在本地保存数据。在产品列表屏幕上,useEffect 函数返回错误::

 Warning: Can't perform a React state update on an unmounted component. 
 This is a no-op, but it indicates a memory leak in your application. To fix, cancel all 
 subscriptions and asynchronous tasks in a useEffect cleanup function.

代码:

  const [didMount, setDidMount] = useState(false);
  const [products, setProducts] = useState<Product[]>([]);

  useEffect(() => 
    setDidMount(true);

    async function loadProducts() 
      const realm = await getRealm();

      try 
        if (!didMount) return;
        const data: Product[] = realm
          .objects('Product')
          .sorted('id', true) as any;

        setProducts(data);
       catch (err) 
        console.error(err);
      
    

    loadProducts();

    return function cleanup() 
      setDidMount(false);
    ;
  , []);

【问题讨论】:

为什么需要loadProducts函数...为什么不直接运行useEffect里面的代码 你在哪里声明setDidMountdidMount 当屏幕加载时我想要更新产品 但是你不需要嵌套函数 我在productssetProducts上面声明了 【参考方案1】:

来自this post。

您不能在清理函数中设置状态,而是应确保不会导致进一步的状态更新。

const [products, setProducts] = useState<Product[]>([]);

useEffect(() => 
  let updateProducts = true;

  getRealm().then((realm) => 
    try 
      const data = realm
          .objects('Product')
          .sorted('id', true) as Product[];

      if (updateProducts) setProducts(data);
     catch (err) 
      console.error(err);
    
  );

  return () => 
    updateProducts = false;
  ;
, []);

【讨论】:

返回同样的错误 您是否在某处使用任何其他useState 回调,您确定错误是由该组件引起的吗? 或者更有趣的问题,您是否在某处的其他一些清理函数中使用了任何setState 回调? 只表示使用状态 如果你想检查得更好...github.com/sudo-victor/phd.

以上是关于ie 对https警告怎么关闭的主要内容,如果未能解决你的问题,请参考以下文章

电脑安全警告怎么解除?

如何解除java安全警告

https页面iframe嵌套http的页面,弹出警告,怎么解决

HTTPS 安全性受损错误。怎么修? [关闭]

https页面iframe嵌套http的页面,弹出警告,怎么解决

https页面iframe嵌套http的页面,弹出警告,怎么解决