1.控制台输入 bui.currentPlatform 可查看工程项目基于什么平台 如:bingotouch
2.如果是 bingotouch , 在 index.js 或者其它配置的地方, 加上这句 bui.config.upload = { needNative:true } , 就会采用原生的方式了,且最终的运行平台是link才行
3.可创建 buijs create -p bingotouch 工程, 参考 index.html index.js 的引入先后顺序, 才能调用bingotouch的方法(一般link 平台的工程都这样创建, 这样减少很多麻烦)
4.多页开发的, 要在 _config.js 那里修改, 才会所有的上传都有效 bui.config.upload = { needNative:true }
5.要保证是更新成刚刚创建的平台的版本(bingotouch) ------- 可执行 buijs update -p bingotouch 更新平台
6. config.js文件里面 bui.debug = false; 这是打包转原生的开关, 新版是 bui.isWebapp = false; false 以后, 后面的原生才会有效
示例:
// bui.debug 为true时, 如果拿不到数据,请确认是否已经开启跨域的谷歌;
// bui.debug 为false, 会使用原生方法请求,请检查页面有没有引入 Cordova.js 及 bingotouch.js;
bui.debug = false;
// 网站配置
var sitePath = "http://eid.bingosoft.net:82",
siteDir = sitePath + "/bui/demo/json/";
// 微信初始化需要用到
var weixinConfig = {
appId : "",
appSecret : ""
}
bui.config.upload = { needNative:true }