Access to fetch at 'file:///C:/D*.glb' from origin 'null' has been blocked by CORS policy

When I open the html file directly on my computer, an error message appears:
Access to fetch at ‘file:///C:/D*.glb’ from origin ‘null’ has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, isolated-app, chrome-extension, chrome, https, chrome-untrusted.
my code:

const loader = new GLTFLoader();
 let [gltf ] = await Promise.all([
            loader.loadAsync('models/' + model_path + '.glb') 
        ]);

If the code is accessed in http://localhost, there is no problem.
but Now i need to access it under “file://” to realize the local(Android system) preview function.
How to solve this problem?
thanks!

If you are using Android Web View, read the following for potential solutions:

hi mugen87,
Sorry, it took so long to reply.
The link you gave can’t solve my problem.
Finally,
I choose to use jquery to load the file.
And use the GLTFLoader.parse method.

The code is as follows:

$.get(fileUrl, function (data) {

    const loader = new GLTFLoader();
    loader.parse(data, 'models/', function (gltf) {