Download???????? UI ????????? ?? TEventHandler
???? ? ?????? ?????????? ??????? ??? ?? Ascoos OS ?????? ?? ????????? ???????? ??? ?? UI (?.?. onClick) ?? ?????? ???? server ???? ??? ?????? TEventHandler. ??????????? ?????????, ???????? callbacks ??? ??????? ?? BootLib, Ajax ? DSL macros.
??????
?? ?????????? ???????????? ??? ???????? ????? ??? Ascoos OS:
- TEventHandler: ??????????? ??? ??????????? ????????, ?????????? ????????????? ??? ??????? ?????? ???? callbacks ? functions.
????
? ?????? ??????????? ?? ??? ?????? PHP:
- ui_event_binding.php: ???????????? ?????????? ?????????, ????????????, ????????? ??? ???????? ???????.
??????????????
-
??????????? ??? Ascoos OS (????? ??????????).
-
?????????? ???????? ???? ?????? `$AOS_LOGS_PATH/tmp/logs/`.
??????????
-
????????? ?? script ???? web server:
https://localhost/aos/examples/case-studies/ui/ui_event_binding/ui_event_binding.php
-
????????????? ?? ?????? ?? JavaScript:
fetch('/aos/examples/case-studies/ui/ui_event_binding/ui_event_binding.php', {
method: 'POST',
body: JSON.stringify({ event: 'ui.onClick', elementId: 'submitButton' }),
headers: { 'Content-Type': 'application/json' }
});
-
? ?????????????? jQuery ??? ??????? ??????:
<button id="submitButton">???????</button>
<script>
$('#submitButton').on('click', function() {
$.ajax({
url: 'server.php',
type: 'POST',
data: {
target: 'ui',
eventType: 'onClick',
elementId: 'submitButton',
formData: { name: '???????', email: 'user@example.com' }
},
success: function(response) {
console.log(response);
}
});
});
</script>
?????????? ??????
$eventHandler->register('ui', 'onClick', fn($params) => processForm($params));
$eventHandler->trigger('ui', 'onClick', $data);
??????????? ??????????
?? script ?????????? ?? ?????? ??? ??????????: ????????? ????????: ????? = ???????, Email = user@example.com
?????
??????????
?????? ?? ???????????? ?? ???? ?? ??????; ???? fork ?? ??????????, ??????????? ? ????????? ?? ui_event_binding.php ??? ??????? pull request. ??? ?? CONTRIBUTING.md ??? ???????.
????? ??????
???? ? ?????? ?????????? ?????????? ??? ??? Ascoos General License (AGL). ??? ?? LICENSE.
|