BufferGeometry
Object3D
Raycaster
Camera
CubeCamera
PerspectiveCamera
OrthographicCamera
StereoCamera
Clock
Curve
CurvePath
Path
Shape
ShapePath
ArrowHelper
AxesHelper
BoxHelper
Box3Helper
CameraHelper
DirectionalLightHelper
GridHelper
PolarGridHelper
HemisphereLightHelper
PlaneHelper
PointLightHelper
SkeletonHelper
SpotLightHelper
Light
PointLight
RectAreaLight
SpotLight
DirectionalLight
HemisphereLight
LightShadow
PointLightShadow
AnimationLoader
AudioLoader
BufferGeometryLoader
CompressedTextureLoader
CubeTextureLoader
DataTextureLoader
FileLoader
ImageBitmapLoader
ImageLoader
Loader
LoaderUtils
MaterialLoader
ObjectLoader
TextureLoader
LoadingManager
Material
Box2
Box3
Color
Cylindrical
Euler
Frustum
Interpolant
Line3
MathUtils
Matrix3
Matrix4
Plane
Quaternion
AnimationAction
AnimationClip
AnimationMixer
AnimationObjectGroup
AnimationUtils
keyframeTrack
PropertyBinding
PropertyMixer
BooleanKeyframeTrack
QuaternionKeyframeTrack
StringKeyframeTrack
Audio
AudioAnalyser
AudioContext
AudioListener
PositionalAudio

LoaderUtils.extractUrlBase()

LoaderUtils.extractUrlBase(url: string) : string

该方法用于从一个url中提取出其基础路径(基础url),基础url即是除去其最后一个斜杠“/”及之后的内容(文件名)之外的部分。如果一个url没有斜杠,则其基础url即为整个url。

参数

  • url:需要提取基础url的url字符串。

返回值

返回提取出来的基础url字符串。

示例

const url = "http://www.example.com/assets/models/scene.gltf";
const baseUrl = THREE.LoaderUtils.extractUrlBase(url); // "http://www.example.com/assets/models/"

在上述示例中,我们将一个模型文件的url字符串"http://www.example.com/assets/models/scene.gltf"传入该方法进行处理,返回了整个模型文件的基础url字符串"http://www.example.com/assets/models/"

注意事项

如果url中包含查询参数或#标记(如http://www.example.com/?test=123#section1),则其基础url将是去掉这些参数和标记后的部分(即http://www.example.com/)。