Yeoman生成器错误:需要上游代理端口

时间:2018-11-30 13:05:15

标签: node.js npm yo spfx

我正在尝试使用yeoman生成器创建项目,但出现错误。

enter image description here

我也尝试过再次卸载和安装yeoman,但无法正常工作。每次遇到相同的错误。

1 个答案:

答案 0 :(得分:0)

您是否可能处于代理后面的工作环境中?如果不确定,可以检查IE设置中是否配置了代理,也可以通过在命令行中运行以下命令来查看

docClient.scan

在这种情况下,您需要运行以下命令来替换代理网址

<androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="70dp"
        android:background="@drawable/main_blue_gradient"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent">


    <RelativeLayout
            android:id="@+id/toolbarTitle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintTop_toTopOf="parent">

        <ImageView
                android:id="@+id/backArrowBtn"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:clickable="true"
                android:padding="16dp"
                android:src="@drawable/back_arrow_icon" />

        <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:padding="16dp"
                android:text="@string/create_resume"
                android:textColor="@color/main_white"
                android:textSize="20sp" />

    </RelativeLayout>

</androidx.constraintlayout.widget.ConstraintLayout>



<RelativeLayout
        android:id="@+id/contentContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/toolbar">



</RelativeLayout>