|

楼主 |
发表于 2016-2-24 11:30:22
|
显示全部楼层
代码:- define(function(require){
- var $ = require("jquery");
- var justep = require("$UI/system/lib/justep");
- require("cordova!plugin.http.request");
-
- var Model = function(){
- this.callParent();
- };
-
- Model.prototype.modelLoad = function(){
- var url = "http://api.map.baidu.com/ag/coord/convert";
- navigator.plugins.HttpRequest.getJSON(url, {"from":0,"to":4,"x":108.637775,"y":21.981063}, function(json){
- console.info(json);
- })
- };
- return Model;
- });
复制代码
还是undefined…… |
|