是的你可以。如果您了解有关 Web 服务应用程序的要点,它将不会提供 UI。
要将 Web 应用程序转换为 Web 服务应用程序,您需要在 config.xml 文件中附加以下代码
<widget>
<tizen:service id="websvcapp0.service1" auto-restart="true" on-boot="false">
<tizen:content src="service/service1.js" />
<tizen:name>WebServiceApplication1</tizen:name>
<tizen:icon src="icon1.png" />
<tizen:description>WebServiceApplication1</tizen:description>
</tizen:service>
</widget>
config.xml 的最终外观将是这样的
<?xml version="1.0"encoding="TF-8">
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen=http://tizen.org/ns/widgets
id="http://yourdomain/WebServiceApplication" version="1.0.0" viewmodes="maximized">
<tizen:application id="websvcapp0.WebServiceApplication" package="websvcapp0" required_version="2.3" />
<content src="index.html" />
<feature name="http://tizen.org/feature/screen.size.all" />
<icon src="icon.png" />
<name>WebServiceApplication</name>
<tizen:service id="websvcapp0.service1" auto-restart="true" on-boot="false">
<tizen:content src="service/service1.js" />
<tizen:name>WebServiceApplication1</tizen:name>
<tizen:icon src="icon1.png" />
<tizen:description>WebServiceApplication1</tizen:description>
</tizen:service>
</widget>
并添加以下权限
<tizen:feature name="http://tizen.org/feature/web.service"/>
此链接提供了创建 Web 服务应用程序要遵循的完整方法。
https://developer.tizen.org/dev-guide/wearable/2.3.0/org.tizen.wearable.web.appprogramming/html/tutorials/service_tutorial/service_app_tutorial.htm