这个远程spine加载有人测试过了吗

var spineNode = new cc.Node();
var skeleton = spineNode.addComponent(sp.Skeleton);
this.node.addChild(spineNode);

var image = “http://localhost/download/spineres/1/1.png”;
var ske = “http://localhost/download/spineres/1/1.skel”;
var atlas = “http://localhost/download/spineres/1/1.atlas”;
cc.assetManager.loadAny([{ url: atlas, ext: ‘.txt’ }, { url: ske, ext: ‘.bin’ }], (error, assets) => {
cc.assetManager.loadRemote(image, (error, texture) => {
var asset = new sp.SkeletonData();
asset._nativeAsset = assets[1];
asset.atlasText = assets[0];
asset.textures = [texture];
asset.textureNames = [‘1.png’];
skeleton.skeletonData = asset;
});
});

上面这段代码怎么测试啊 我把资源放入resources文件夹下面。一直出现load 404

cc.Class({
extends: cc.Component,

properties: {
    label: {
        default: null,
        type: cc.Label
    },
    // defaults, set visually when attaching this script to the Canvas
    text: 'Hello, World!'
},

// use this for initialization
onLoad: function () {
    this.label.string = this.text;


    var spineNode = new cc.Node();
    var skeleton = spineNode.addComponent(sp.Skeleton);
    this.node.addChild(spineNode);
    var image = "http://localhost:7456/resources/jf/jf.png";
    var ske = "http://localhost:7456/resources/jf/jf.skel";
    var atlas = "http://localhost:7456/resources/jf/jf.atlas";



    cc.assetManager.loadAny([{ url: atlas, ext: '.txt' }, { url: ske, ext: '.bin' }], (error, assets) => {
        if (error) {
            console.log(error)
        }
        else {
            cc.assetManager.loadRemote(image, (error, texture) => {
                if (error) {
                    console.log(error)
                }
                else {
                    var asset = new sp.SkeletonData();
                    asset._nativeAsset = assets[1]
                    asset.atlasText = assets[0]
                    asset.textures = [texture];
                    asset.textureNames = ["jf/jf.png"];
                    skeleton.skeletonData = asset;
                }
            });
        }
    });
},



// called every frame
update: function (dt) {

},

});

这是我的测试代码

出现了下面错误

Simulator: JS: [ERROR]: Downloader: Failed to download http://localhost:7456/resources/jf/jf.atlas with status code (404) -3
Simulator: JS: [ERROR]: Downloader: Failed to download http://localhost:7456/resources/jf/jf.skel with status code (404) -3
Simulator: JS: [ERROR]: Downloader: Failed to download http://localhost:7456/resources/jf/jf.atlas with status code (404) -3
Simulator: JS: [ERROR]: Downloader: Failed to download http://localhost:7456/resources/jf/jf.skel with status code (404) -3
Simulator: ScriptEngine::cleanup begin …