0
我想爲javascript中的後臺任務設置自定義觸發器setTrigger
。UWP:後臺任務 - 自定義觸發器
我認爲使用contentChanged
Method這...
taskBuilder.setTrigger(new Windows.ApplicationModel.DataTransfer.Clipboard.contentChanged);
...會的工作,但它會導致以下錯誤消息:
0x800a01bd - JavaScript runtime error: Object doesn't support this action
有沒有其他方法可以達到同樣的效果? – jonhue
Clipboard.contentChanged只能在前臺應用程序中使用。 –
所以唯一的選擇是在應用程序處於前臺時在循環中使用該方法? – jonhue