Issue #436Opened October 19, 2017by santiph0 reactions

RemoteStorage - Load Template uses POST

Question

I'm using a custom module to save/load a template with a service like this:

module.exports = (grapesjs) => {
    const LOAD_COMMAND = 'external-load';
    const storageManager = grapesjs.StorageManager;

    // Add Save Button
    grapesjs.Panels.addButton(
        'options',
        {
            id: 'open',
            className: 'fa fa-folder-open-o',
            attributes: { title: 'Open Template' },
            command: LOAD_COMMAND,
        },
    );

    // Custom Save Command
    grapesjs.Commands.add(
        LOAD_COMMAND,
        {
            run(editor, sender) {
                storageManager.get('remote').set({
                    urlLoad: 'localhost:8000/templates/5',
                    urlStore: 'localhost:8000/templates'
                });

                editor.load(() => {
                    sender.set('active', 0);
                });
            },
        },
    );
};

Save is a different module and works just fine. The problem is with the Load() call. For some reason, Grapes performs a POST action to localhost:8000/templates/5 getting a 405 - Method not allowed from the backend.

Fetch call in RemoteStorage model is defaulting to POST if no option is specified as Method for the request. https://github.com/artf/grapesjs/blob/dev/src/storage_manager/model/RemoteStorage.js#L123

And Load doesn't specify any when calling this.request(): https://github.com/artf/grapesjs/blob/dev/src/storage_manager/model/RemoteStorage.js#L77

Answers (3)

santiphOctober 27, 20170 reactions

Solved

suresh5December 7, 20180 reactions

hi can you share me the json when u are sending to load template ?

lock[bot]December 7, 20190 reactions

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

Related Questions and Answers

Continue research with similar issue discussions.

Paid Plugins That Match This Issue

Curated by issue keywords and label relevance to help you ship faster.

View all plugins

Loading paid plugin recommendations...

Browse Plugin Categories

Jump directly to plugin category pages on the marketplace.