access denied to PHP from Blackberry 10 platform using phonegap - closed

前端 未结 3 1297
陌清茗
陌清茗 2021-01-24 23:32

I have a problem with my phonegap project working on blackberry simulator. The version is 10.

When I say phonegap, I haven\'t used any Cordova features yet but my simple

3条回答
  •  长发绾君心
    2021-01-25 00:02

    This could be a cross-site request issue - I'm suspecting that the PHP side doesn't accept requests from outside of its own domain.

    How about putting this header at the top of your PHP file?

    header('Access-Control-Allow-Origin: *'); 
    

提交回复
热议问题