Giter VIP home page Giter VIP logo

Comments (5)

gitbrent avatar gitbrent commented on September 26, 2024

Hi @ra6hi9,

Good timing - I just finished updating this information in the README this evening. :-)

Check out the requestDigest option in the List Options section.

Providing a value to that option will result in the X-RequestDigest header being populated and sent to SP enabling CRUD operations.

from sprestlib.

rachidio avatar rachidio commented on September 26, 2024

Thanks brent,
This new option is very helpful, but this resolve only a part of the issue, because even if I am making the create operation from a SharePoint .aspx page with $("#__REQUESTDIGEST").val() not empty, I am getting the same error (validation ...)
After I did some debugging I found the source of the issue:

// Detect Node.js
var NODEJS = ( typeof module !== 'undefined' && module.exports );
...
...
if ( NODEJS ) {
objAjaxQuery.headers["Cookie"] = APP_OPTS.nodeCookie;
delete objAjaxQuery.headers["X-RequestDigest"]; //<----
...

The X-RequestDigest header is removed if the code is executed in NODE context, but this code is also executed in Browser context, because NODEJS variable is not undefined, can you correct me if I misunderstood something.

Thanks

from sprestlib.

gitbrent avatar gitbrent commented on September 26, 2024

Hi @ra6hi9

Yes, Angular and other types of applications may be detected as Node.js apps, so i've created a flag that will you enable to specify browser mode:

NODE Options

sprLib.nodeConfig({ nodeEnabled:false });

That should enable X-RequestDigest to pass as normal.

from sprestlib.

rachidio avatar rachidio commented on September 26, 2024

I think this condition in inverted:

sprLib.nodeConfig({ nodeEnabled:false });
....
if ( NODEJS && !APP_OPTS.nodeEnabled ) {

if nodeEnabled == false -> APP_OPTS.nodeEnabled == false -> NODEJS && !APP_OPTS.nodeEnabled == true

Thank you

from sprestlib.

rachidio avatar rachidio commented on September 26, 2024

The inverted condition issue is resolved in the last commits 👍

from sprestlib.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.