在meteor中使用支付,以及與伺服器進行資料互動

石橋碼農發表於2015-08-04

how to use Meteor.http.call?

Meteor.http is only available on sever side

http模組僅能用於server端。

1,add http

meteor add http

2, 使用wrapAsync封裝非同步呼叫

Meteor.methods({
    hello:function(){
        console.log("server");
        var postTest = function (cb) {
            Meteor.http.post("http://app.lawxin.com/version",
                {data: {},headers: {
                    //"content-type":"application/json",
                    "Accept":"application/json"
                }},
                function (error, result) {
                    console.log("content", JSON.stringify(result));
                    cb && cb(error, result);
                });
        };

        return Meteor.wrapAsync(postTest)();
    }
...

  

cb是callback,是必須呼叫的。cb的格式須是function(error,result){}格式。

3,錯誤:ERROR whitelist rejection

mobile-config.js:

App.accessRule('*');

  

4,add cordova pingxx plugin 

meteor add cordova:co.airsia.cordova.pingpp@https://github.com/TongChia/cordova-plugin-pingpp/tarball/b7bdf93a7fbda003a8fab44967bfa5fc36488731 

這個外掛在新增時需要引數,這樣新增:

mobile-config.js:
App.configurePlugin('co.airsia.cordova.pingpp', {
URL_SCHEME: 'meteorionic'
});

5,使用ejson

meteor add ejson

主要方法:

EJSON.parse
EJSON.stringify

6,錯誤:error charge object

function(error,result)

該方法中返回的result是string格式。

原始碼:http://vdisk.weibo.com/s/ao-ZYIoZdaYwE

效果圖:

 

相關文章