在我的react js应用程序中有以下js函数,可从移动设备调用该函数。现在我想从此js功能调用react组件。请指导。
var externalcall = {
callme:function(value) {
//here i want to call a react component
} catch (ex) {
}
}
};
答案 0 :(得分:0)
您可以使用import(ES6)或require导入require组件。此外,返回函数内部的组件。
list_b=[1,2,3,4,5,6,7,8,9] #list with int values
for m in list_b: #storing the list in m
print(m) #printing the m
for m in list_b: # again storing the same list in m
if(10 in m): #checking for presance of 10 in the list
print('yes 10 is presant in listb')
else:
print('10 is not presant in list_b')