我在某些软件包上看到这个命令,我想知道<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app1="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".salesman.fragments.MapsFragment">
<fragment
android:id="@+id/mapView"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"/>
</FrameLayout>
参数意味着什么,例如
-s
我的意思是,我知道,就像npm i -S classnames flexboxgrid
是i
的缩写一样,它是某种东西的缩写,但是我试着看install
,npm help
,npm help help
,npm apihelp npm
,没有任何实际帮助。这就像给一个文盲字典;很多单词,但没有关于选项参数或它们的缩写。
答案 0 :(得分:9)
“S”选项是npm中的“保存”选项。它将npm包添加到项目的依赖项中。您还可以通过编辑package.json文件手动添加依赖项。
要回答有关获取npm帮助的问题,请使用以下命令:
npm help i
这将为您提供“i”选项可用的所有选项的说明。