统一插件管理平台 - 支持H5插件和API插件
window.open('插件URL', '_blank')
tt.navigateTo({ url: '/pages/plugin-demo/plugin-demo?url=' + encodeURIComponent(pluginUrl) })
<iframe src="插件URL" width="100%" height="600"></iframe>
window.open('/plugins/h5/editor/index.html', '_blank')
fetch('/api/weather?city=北京')
fetch('/api/translate', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ text: '你好世界', from: 'zh', to: 'en' }) })
$.ajax({ url: '/api/qrcode', method: 'POST', data: JSON.stringify({ text: 'Hello World' }), contentType: 'application/json' })
tt.request({ url: 'https://www.cdjykg.com/api/weather', method: 'GET', data: { city: '北京' }, success: (res) => console.log(res.data) })
正在加载插件...