Open postbird opened 6 years ago
如果需要同时三端支持 picker,需要在引入'weex-vue-render'
后再引入weex-picker
。
如下:
import Vue from 'vue'
import weex from 'weex-vue-render'
import WeexPicker from '@weex-project/weex-picker'
/* global Vue */
weex.init(Vue)
/* weex initialized here, please do not move this line */
修改@项目/configs/webpack.common.conf.js
文件。
在webpack.common.conf.js中,getEntryFileContent函数向entry文件前面加入了引入vue
,weex-vue-render
的操作,在引入weex-vue-render
后面加上引入weex-picker
。
如下:
const getEntryFileContent = (source, routerpath) => {
let dependence = `import Vue from 'vue'\n`;
dependence += `import weex from 'weex-vue-render'\n`;
// ==============================
// Look here,看这~
dependence += `import WeexPicker from '@weex-project/weex-picker'\n`;
// ==============================
let relativePluginPath = helper.rootNode(config.pluginFilePath);
let entryContents = fs.readFileSync(source).toString();
let contents = '';
entryContents = dependence + entryContents;
entryContents = entryContents.replace(/\/\* weex initialized/, match => `weex.init(Vue)\n${match}`);
if (isWin) {
relativePluginPath = relativePluginPath.replace(/\\/g, '\\\\');
}
if (hasPluginInstalled) {
contents += `\n// If detact plugins/plugin.js is exist, import and the plugin.js\n`;
contents += `import plugins from '${relativePluginPath}';\n`;
contents += `plugins.forEach(function (plugin) {\n\tweex.install(plugin)\n});\n\n`;
entryContents = entryContents.replace(/weex\.init/, match => `${contents}${match}`);
}
return entryContents;
}
希望上面的方案可以解决三端兼容问题,如果还不能解决可以联系我。 Email: sirius1@aliyun.com
@muzin 方案二解决问题,方案一报的错和我之前尝试的方式报错是一样的。
Picker max min参数无效。
picker.pickDate({
value: this.value,
min: '2019-01-22',
max: '2019-01-23'
}, event => {
if (event.result === 'success') {
this.dateValue = event.data
}
})
仍然可以选择超过1月23号的日期。
Picker max min参数无效。
picker.pickDate({ value: this.value, min: '2019-01-22', max: '2019-01-23' }, event => { if (event.result === 'success') { this.dateValue = event.data } })
仍然可以选择超过1月23号的日期。
已解决。 改成max: '2019/01/23' 即可
复现
需要三端同时支持
picker
,因此手动在组件内部引入了weex-picker
。引入方式 :
问题
web 平台使用没有问题,在 native 上抛出错误如下:
去掉 import 后,无报错
期望
weex-picker
的引入是否只能使用script
?如果想在组件内部引入,如何操作?