欢迎各位兄弟 发布技术文章

这里的技术是共享的

v为什么使用RxJS? forRoot forFeature 区别 有大用

普通分类: 

Property 'run' does not exist on type 'typeof EffectsModule' 有大用

Dennis Kuhnert @Kyroy Aug 16 2017 12:38 UTC

Hello, I am getting the error Property 'run' does not exist on type 'typeof EffectsModule'. in my app.module.ts and I imported it import { EffectsModule } from '@ngrx/effects';


Derek @derekkite Aug 16 2017 13:10 UTC

@Kyroy v4 doesn't use run.https://github.com/ngrx/platform/blob/master/docs/effects/README.md



普通分类: 

​API > @ngrx/effects ofType 有大用

API > 
普通分类: 

​API > @ngrx/effects ofType 有大用

API > 
普通分类: 

import go 'go' is declared but its value is never read.ts(6133) Module '"@ngrx/router-store/router-store"' has no exported member 'go'.ts(2305) 有大用 有大大用

普通分类: 

import toPayload Module @ngrx/effects/effects has no exported member 'toPayload'.ts(2305) 有大用 有大大用

突破性变化

    普通分类: 

    TP-LinkR4XX系列路由器配置指南 有大用

    局域网内目标主机为何无法ping通? 有大用

    局域网我们一般指私网,在学校寝室用hub连其他的主机都是在一个局域网内,当然我们家里的无线路由器下所有用户也在一个局域网中,虽然大家都能上网,但是你所获得的地址是经过转换后的。

        在互联网公司如电信、移动公司,直接用公网地址上网,同一个办公室都在一个网段,既属于一个局域网又属于互联网中的城域网。

    普通分类: 

    向 多个 同名文件里 批量增加同一段内容 有大用 有大大用

     add_APP_LOG_TO_env.sh   ( addAPP_LOG_TO_env.sh )

    #!/bin/bash

    #

    for  file in /home/wwwroot/*/public_html ;do

            if [ -d "$file" -a -f "${file}/.env" ] ;then

                            # echo $i

                            ENV=${file}/.env

                              sed -i '/APP\_URL\=/a \APP_LOG=daily' $ENV

                              sed -i  's/\r$//g' $ENV

            fi

    done








    #!/bin/bash

    #

    普通分类: 

    检查 mysql 是否启动 如果 没有启动的话 就启动一下 用在 crontab 上 (mysql由于错误停止时) 有大用

     check_mysqld_status.sh   



    #!/bin/bash

    #

    /sbin/service mysqld status &> /dev/null

    if [ $? -eq 0 ];then

     /sbin/service mysqld restart

    fi

    ~


    普通分类: 

    批量执行 drupal 的 cron 有大用

    cron_ykt_cron.sh



    #!/bin/bash

    #

    # this is the standard Drupal cron invocation that runs from cron

    #     this will flush the Page Cache when Minimum Cache Lifetime set to <none>

    #

    wget -O - -q -t 1 http://ykt.400.com/cron.php?cron_key=uWdhZNrttyyuuiikdxHsSyCSJGpagxAK7n3Iad

    #

    普通分类: 

    modifyip.sh 批量修改文件的ip 有大用 有大大用

    modify_ip.sh 


    #!/bin/bash

    #

    for  file in /home/wwwroot/*/public_html ;do

            if [ -d "$file" -a -f "${file}/.env" ] ;then

                            # echo $i

                            ENV=${file}/.env

                              sed -i 's@211.149.166.241@47.52.105.149@g' $ENV

                              sed -i  's/\r$//g' $ENV

            fi

    done


    普通分类: 

    自己亲自做的 crontab cron 批量删除 有大用 有大大用

    #!/bin/bash

    #

    for file in /home/wwwroot/*


    do

    if [ -d "$file" ]

    then

      echo "$file is directory"

      echo ${file}/public_html/public

      if [ -d "${file}/public_html/public" ] ; then

         \cp -f /home/wwwroot/zzhmu_com/public_html/public/robots.txt ${file}/public_html/public

      fi

    elif [ -f "$file" ]

    then

      echo "$file is file"

    fi

    done

    ~

    ~


    普通分类: 

    自己亲自做的 crontab cron 批量删除某文件夹下面的文件 有大用 有大大用 有大大用

    removeStorageViewsAndLog.sh  (remove_storage_views_and_log.sh )

    #!/bin/bash

    #


    for I in /home/wwwroot/* ; do

       viewcache=${I}/public_html/storage/framework/views

       if [ -d $viewcache ]; then

          echo ${viewcache}

          find ${viewcache} -name "*.php" | xargs rm -rf

          #rm -Rf ${Frontcache}/*

       fi

    done



    for I in /home/wwwroot/* ; do

       logcache=${I}/public_html/storage/logs


       if [ -d $logcache ]; then

          echo ${logcache}

    普通分类: 

    Linux下统计当前文件夹下的文件个数、目录个数 文件夹个数 有大用

    普通分类: 

    苹果电脑怎么查看管理查看内存 cpu 有大用

    很多时候,我们在第一次使用苹果电脑的时候会发现苹果电脑跟之前我们使用的pc电脑并不一样,因为苹果电脑是不分区不分盘,所以,今天我们就来看一下,如何管理电脑和查看电脑的内存。                

    普通分类: 

    MAC地址过滤后路由器一定要重启吗

    普通分类: 

    局域网超级共享设置工具 绿色免费版 有大用

    普通分类: 

    Property 'instrumentOnlyWithExtension' does not exist on type 'typeof StoreDevtoolsModule'. #71 有大用

    普通分类: 

    Property 'provideStore' does not exist on type 'typeof StoreModule'.ts(2339) 有大用

    普通分类: 

    redux ngrx 文档 教程 手册 入门 有大用 有大大用 有大大大用

    typescript imports 导入 有大用

    relative 和 non-relative import

    普通分类: 

    搭建samba服务,实现局域网文件共享 有大用

    搭建samba服务,实现局域网文件共享

    普通分类: 

    win7系统如何配置samba服务器

    许多用户还不知道win7系统如何配置samba服务器?samba服务能提供文件共享服务,它的优点在于很方面在windows和linux之间进行文件共享服务。如何配置samba服务器呢?这个软件配置起来也不难,使用也非常简单。接下去我们一起看下配置方法。

    普通分类: 

    局域网传输文件 速度快 有大用 有大大用

    ftp,samba,飞鸽传书...


    普通分类: 

    局域网samba配置,以及在Windows环境下的访问

    普通分类: 

    tplink tp-link 文档 帮助文档 有大用

    局域网限速软件 网管软件 局域网 路由器 管理软件 有大用

    普通分类: 

    上行带宽和下行带宽 是什么意思 有大用

    指从你的电脑上传的速度


    普通分类: 

    rxjs操作符:of和from 区别 有大用

    普通分类: 

    页面

    Subscribe to 个人技术网_前端_后台_php_div_css_linux_javascript_seo RSS