Skip to content

Commit a8146c0

Browse files
Hanks10100yyx990803
authored andcommitted
feat(weex): remove __weex_require_module__ api
1 parent 9bded22 commit a8146c0

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

src/platforms/weex/entry-framework.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,7 @@ export function createInstance (
9191
// It will declare some instance variables like `Vue`, HTML5 Timer APIs etc.
9292
const instanceVars = Object.assign({
9393
Vue,
94-
weex: weexInstanceVar,
95-
// deprecated
96-
__weex_require_module__: weexInstanceVar.requireModule // eslint-disable-line
94+
weex: weexInstanceVar
9795
}, timerAPIs, env.services)
9896

9997
if (!callFunctionNative(instanceVars, appCode)) {

test/weex/runtime/framework.spec.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ describe('framework APIs', () => {
261261

262262
const instance = new Instance(runtime)
263263
framework.createInstance(instance.id, `
264-
const moduleFoo = __weex_require_module__('foo')
264+
const moduleFoo = weex.requireModule('foo')
265265
new Vue({
266266
data: {
267267
x: 'Hello'
@@ -361,9 +361,9 @@ describe('framework APIs', () => {
361361

362362
const instance = new Instance(runtime)
363363
framework.createInstance(instance.id, `
364-
const moduleFoo = __weex_require_module__('foo')
365-
const moduleBar = __weex_require_module__('bar')
366-
const moduleBaz = __weex_require_module__('baz')
364+
const moduleFoo = weex.requireModule('foo')
365+
const moduleBar = weex.requireModule('bar')
366+
const moduleBaz = weex.requireModule('baz')
367367
new Vue({
368368
render: function (createElement) {
369369
const value = []
@@ -592,7 +592,7 @@ describe('framework APIs', () => {
592592

593593
const instance = new Instance(runtime)
594594
framework.createInstance(instance.id, `
595-
const moduleFoo = __weex_require_module__('foo')
595+
const moduleFoo = weex.requireModule('foo')
596596
new Vue({
597597
mounted: function () {
598598
moduleFoo.a(a => a + 1)
@@ -624,7 +624,7 @@ describe('framework APIs', () => {
624624

625625
const instance = new Instance(runtime)
626626
framework.createInstance(instance.id, `
627-
const moduleFoo = __weex_require_module__('foo')
627+
const moduleFoo = weex.requireModule('foo')
628628
new Vue({
629629
mounted: function () {
630630
moduleFoo.a(this.$refs.x)

0 commit comments

Comments
 (0)