Skip to content Skip to sidebar Skip to footer

Ajax Transfer Type Gets Overwriten By Url

I have an ajax call that has a generated url via a paginator script: 'http://192.168.1.23:8000/pricing/0/999/null/?page=9' Quite the same link is generated on the server: 'https:/

Solution 1:

Is the url that you want to target is located in another site ? If yes, then it might be CORS so your url call needs to return the following headers

Access-Control-Allow-Origin : * Access-Control-Allow-Headers : Origin, SecurityPrivateKeyID Access-Control-Allow-Methods : GET, POST, PUT, DELETE, OPTIONS

Post a Comment for "Ajax Transfer Type Gets Overwriten By Url"